Skip to content

Commit 380b93b

Browse files
BreakinBennycraftablescience
authored andcommitted
vcryptpp: add Bloody Good Time's encryption key
1 parent ac56a7f commit 380b93b

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

include/vcryptpp/VICE.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ namespace vcryptpp::VICE {
1313
namespace KnownCodes {
1414

1515
constexpr std::string_view DEFAULT = "x9Ke0BY7";
16+
constexpr std::string_view BLOODY_GOOD_TIME = "K4PeJwL7";
1617
constexpr std::string_view CONTAGION_WEAPONS = "fUk0fF69";
1718
constexpr std::string_view CONTAGION_SCRIPTS = "5!rrFz6p";
1819
constexpr std::string_view COUNTER_STRIKE_SOURCE = "d7NSuLq2";

lang/c/include/vcryptppc/VICE.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
#define VCRYPTPP_VICE_KNOWN_CODES_DEFAULT "x9Ke0BY7";
66

7+
#define VCRYPTPP_VICE_BLOODY_GOOD_TIME "K4PeJwL7"
78
#define VCRYPTPP_VICE_KNOWN_CODES_CONTAGION_WEAPONS "fUk0fF69"
89
#define VCRYPTPP_VICE_KNOWN_CODES_CONTAGION_SCRIPTS "5!rrFz6p"
910
#define VCRYPTPP_VICE_KNOWN_CODES_COUNTER_STRIKE_SOURCE "d7NSuLq2"

lang/csharp/src/vcryptpp/VICE.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ internal static unsafe partial class Extern
1717
public static class KnownCodes {
1818
public const string DEFAULT = "x9Ke0BY7";
1919

20+
public const string BLOODY_GOOD_TIME = "K4PeJwL7";
2021
public const string CONTAGION_WEAPONS = "fUk0fF69";
2122
public const string CONTAGION_SCRIPTS = "5!rrFz6p";
2223
public const string COUNTER_STRIKE_SOURCE = "d7NSuLq2";

lang/python/src/vcryptpp.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ inline void register_python(py::module_& m) {
3636
using namespace KnownCodes;
3737

3838
KnownCodes.attr("DEFAULT") = DEFAULT;
39+
KnownCodes.attr("BLOODY_GOOD_TIME") = BLOODY_GOOD_TIME;
3940
KnownCodes.attr("CONTAGION_WEAPONS") = CONTAGION_WEAPONS;
4041
KnownCodes.attr("CONTAGION_SCRIPTS") = CONTAGION_SCRIPTS;
4142
KnownCodes.attr("COUNTER_STRIKE_SOURCE") = COUNTER_STRIKE_SOURCE;

0 commit comments

Comments
 (0)