Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion lang/csharp/src/vcryptpp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
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
Loading