diff --git a/include/vcryptpp/VICE.h b/include/vcryptpp/VICE.h index f3548242e..06a7db42a 100644 --- a/include/vcryptpp/VICE.h +++ b/include/vcryptpp/VICE.h @@ -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"; diff --git a/lang/c/include/vcryptppc/VICE.h b/lang/c/include/vcryptppc/VICE.h index 5c6dc9da9..cda0228be 100644 --- a/lang/c/include/vcryptppc/VICE.h +++ b/lang/c/include/vcryptppc/VICE.h @@ -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" diff --git a/lang/csharp/src/vcryptpp.sln b/lang/csharp/src/vcryptpp.sln index 19b2c4de6..d9bea3805 100644 --- a/lang/csharp/src/vcryptpp.sln +++ b/lang/csharp/src/vcryptpp.sln @@ -2,7 +2,7 @@ # Visual Studio Version 17 VisualStudioVersion = 17.9.34622.214 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "vcryptpp", "vcryptpp\vcryptpp.csproj", "{1A936830-5F97-4722-9012-67A324764879}" +Project("{3D6B5B52-47BF-4FB9-9B11-261BC3E44F2C}") = "vcryptpp", "vcryptpp\vcryptpp.csproj", "{1A936830-5F97-4722-9012-67A324764879}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/lang/csharp/src/vcryptpp/VICE.cs b/lang/csharp/src/vcryptpp/VICE.cs index bd2dfde44..500fd299b 100644 --- a/lang/csharp/src/vcryptpp/VICE.cs +++ b/lang/csharp/src/vcryptpp/VICE.cs @@ -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"; diff --git a/lang/python/src/vcryptpp.h b/lang/python/src/vcryptpp.h index 1ae642783..be6a9c479 100644 --- a/lang/python/src/vcryptpp.h +++ b/lang/python/src/vcryptpp.h @@ -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;