Skip to content

Commit

Permalink
vcryptpp: add Bloody Good Time's encryption key
Browse files Browse the repository at this point in the history
  • Loading branch information
BreakinBenny authored and craftablescience committed Dec 13, 2024
1 parent ac56a7f commit 380b93b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/vcryptpp/VICE.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace vcryptpp::VICE {
namespace KnownCodes {

constexpr std::string_view DEFAULT = "x9Ke0BY7";
constexpr std::string_view BLOODY_GOOD_TIME = "K4PeJwL7";
constexpr std::string_view CONTAGION_WEAPONS = "fUk0fF69";
constexpr std::string_view CONTAGION_SCRIPTS = "5!rrFz6p";
constexpr std::string_view COUNTER_STRIKE_SOURCE = "d7NSuLq2";
Expand Down
1 change: 1 addition & 0 deletions lang/c/include/vcryptppc/VICE.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#define VCRYPTPP_VICE_KNOWN_CODES_DEFAULT "x9Ke0BY7";

#define VCRYPTPP_VICE_BLOODY_GOOD_TIME "K4PeJwL7"
#define VCRYPTPP_VICE_KNOWN_CODES_CONTAGION_WEAPONS "fUk0fF69"
#define VCRYPTPP_VICE_KNOWN_CODES_CONTAGION_SCRIPTS "5!rrFz6p"
#define VCRYPTPP_VICE_KNOWN_CODES_COUNTER_STRIKE_SOURCE "d7NSuLq2"
Expand Down
1 change: 1 addition & 0 deletions lang/csharp/src/vcryptpp/VICE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ internal static unsafe partial class Extern
public static class KnownCodes {
public const string DEFAULT = "x9Ke0BY7";

public const string BLOODY_GOOD_TIME = "K4PeJwL7";
public const string CONTAGION_WEAPONS = "fUk0fF69";
public const string CONTAGION_SCRIPTS = "5!rrFz6p";
public const string COUNTER_STRIKE_SOURCE = "d7NSuLq2";
Expand Down
1 change: 1 addition & 0 deletions lang/python/src/vcryptpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ inline void register_python(py::module_& m) {
using namespace KnownCodes;

KnownCodes.attr("DEFAULT") = DEFAULT;
KnownCodes.attr("BLOODY_GOOD_TIME") = BLOODY_GOOD_TIME;
KnownCodes.attr("CONTAGION_WEAPONS") = CONTAGION_WEAPONS;
KnownCodes.attr("CONTAGION_SCRIPTS") = CONTAGION_SCRIPTS;
KnownCodes.attr("COUNTER_STRIKE_SOURCE") = COUNTER_STRIKE_SOURCE;
Expand Down

0 comments on commit 380b93b

Please sign in to comment.