From d1a647d53888c4e3d7d2208ec191e023f9013a23 Mon Sep 17 00:00:00 2001 From: GabrielTofvesson Date: Sun, 25 Feb 2018 11:34:48 +0100 Subject: [PATCH] Add project files. --- AES/AES.vcxproj | 122 ++++++++++++++++++++++++++++++++ AES/AES.vcxproj.filters | 17 +++++ Crypto.sln | 71 +++++++++++++++++++ Crypto/Crypto.vcxproj | 124 +++++++++++++++++++++++++++++++++ Crypto/Crypto.vcxproj.filters | 22 ++++++ Crypto/Start.cpp | 6 ++ RSA/RSA.h | 5 ++ RSA/RSA.vcxproj | 123 +++++++++++++++++++++++++++++++++ RSA/RSA.vcxproj.filters | 22 ++++++ SHA1/SHA1.vcxproj | 122 ++++++++++++++++++++++++++++++++ SHA1/SHA1.vcxproj.filters | 17 +++++ XMath/BigInteger.cpp | 122 ++++++++++++++++++++++++++++++++ XMath/BigInteger.h | 45 ++++++++++++ XMath/XMath.vcxproj | 126 ++++++++++++++++++++++++++++++++++ XMath/XMath.vcxproj.filters | 27 ++++++++ 15 files changed, 971 insertions(+) create mode 100644 AES/AES.vcxproj create mode 100644 AES/AES.vcxproj.filters create mode 100644 Crypto.sln create mode 100644 Crypto/Crypto.vcxproj create mode 100644 Crypto/Crypto.vcxproj.filters create mode 100644 Crypto/Start.cpp create mode 100644 RSA/RSA.h create mode 100644 RSA/RSA.vcxproj create mode 100644 RSA/RSA.vcxproj.filters create mode 100644 SHA1/SHA1.vcxproj create mode 100644 SHA1/SHA1.vcxproj.filters create mode 100644 XMath/BigInteger.cpp create mode 100644 XMath/BigInteger.h create mode 100644 XMath/XMath.vcxproj create mode 100644 XMath/XMath.vcxproj.filters diff --git a/AES/AES.vcxproj b/AES/AES.vcxproj new file mode 100644 index 0000000..d5d7bb0 --- /dev/null +++ b/AES/AES.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {E1176BBF-344B-4041-AB24-A7109E969339} + AES + 10.0.16299.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/AES/AES.vcxproj.filters b/AES/AES.vcxproj.filters new file mode 100644 index 0000000..6a1782f --- /dev/null +++ b/AES/AES.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/Crypto.sln b/Crypto.sln new file mode 100644 index 0000000..720c2b9 --- /dev/null +++ b/Crypto.sln @@ -0,0 +1,71 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2020 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CryptoTests", "Crypto\Crypto.vcxproj", "{CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RSA", "RSA\RSA.vcxproj", "{9E9FB2D1-5B04-4064-B5EC-9F645719DB78}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AES", "AES\AES.vcxproj", "{E1176BBF-344B-4041-AB24-A7109E969339}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SHA1", "SHA1\SHA1.vcxproj", "{2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XMath", "XMath\XMath.vcxproj", "{5F9AD03F-B1F0-4DB3-B39A-49B66895774C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Debug|x64.ActiveCfg = Debug|x64 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Debug|x64.Build.0 = Debug|x64 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Debug|x86.ActiveCfg = Debug|Win32 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Debug|x86.Build.0 = Debug|Win32 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Release|x64.ActiveCfg = Release|x64 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Release|x64.Build.0 = Release|x64 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Release|x86.ActiveCfg = Release|Win32 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768}.Release|x86.Build.0 = Release|Win32 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Debug|x64.ActiveCfg = Debug|x64 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Debug|x64.Build.0 = Debug|x64 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Debug|x86.ActiveCfg = Debug|Win32 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Debug|x86.Build.0 = Debug|Win32 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Release|x64.ActiveCfg = Release|x64 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Release|x64.Build.0 = Release|x64 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Release|x86.ActiveCfg = Release|Win32 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78}.Release|x86.Build.0 = Release|Win32 + {E1176BBF-344B-4041-AB24-A7109E969339}.Debug|x64.ActiveCfg = Debug|x64 + {E1176BBF-344B-4041-AB24-A7109E969339}.Debug|x64.Build.0 = Debug|x64 + {E1176BBF-344B-4041-AB24-A7109E969339}.Debug|x86.ActiveCfg = Debug|Win32 + {E1176BBF-344B-4041-AB24-A7109E969339}.Debug|x86.Build.0 = Debug|Win32 + {E1176BBF-344B-4041-AB24-A7109E969339}.Release|x64.ActiveCfg = Release|x64 + {E1176BBF-344B-4041-AB24-A7109E969339}.Release|x64.Build.0 = Release|x64 + {E1176BBF-344B-4041-AB24-A7109E969339}.Release|x86.ActiveCfg = Release|Win32 + {E1176BBF-344B-4041-AB24-A7109E969339}.Release|x86.Build.0 = Release|Win32 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Debug|x64.ActiveCfg = Debug|x64 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Debug|x64.Build.0 = Debug|x64 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Debug|x86.ActiveCfg = Debug|Win32 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Debug|x86.Build.0 = Debug|Win32 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Release|x64.ActiveCfg = Release|x64 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Release|x64.Build.0 = Release|x64 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Release|x86.ActiveCfg = Release|Win32 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB}.Release|x86.Build.0 = Release|Win32 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Debug|x64.ActiveCfg = Debug|x64 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Debug|x64.Build.0 = Debug|x64 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Debug|x86.ActiveCfg = Debug|Win32 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Debug|x86.Build.0 = Debug|Win32 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Release|x64.ActiveCfg = Release|x64 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Release|x64.Build.0 = Release|x64 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Release|x86.ActiveCfg = Release|Win32 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FA6D824B-71F5-46A6-8E27-8088E714AA7D} + EndGlobalSection +EndGlobal diff --git a/Crypto/Crypto.vcxproj b/Crypto/Crypto.vcxproj new file mode 100644 index 0000000..4c56918 --- /dev/null +++ b/Crypto/Crypto.vcxproj @@ -0,0 +1,124 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {CBDD5263-BDA4-44DD-B3A5-E6923B5D4768} + Crypto + 10.0.16299.0 + CryptoTests + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + \ No newline at end of file diff --git a/Crypto/Crypto.vcxproj.filters b/Crypto/Crypto.vcxproj.filters new file mode 100644 index 0000000..b4a37b6 --- /dev/null +++ b/Crypto/Crypto.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + \ No newline at end of file diff --git a/Crypto/Start.cpp b/Crypto/Start.cpp new file mode 100644 index 0000000..3997abd --- /dev/null +++ b/Crypto/Start.cpp @@ -0,0 +1,6 @@ +#include + +int main() +{ + return 0; +} \ No newline at end of file diff --git a/RSA/RSA.h b/RSA/RSA.h new file mode 100644 index 0000000..c073465 --- /dev/null +++ b/RSA/RSA.h @@ -0,0 +1,5 @@ +#pragma once + +struct PublicKey { + +}; \ No newline at end of file diff --git a/RSA/RSA.vcxproj b/RSA/RSA.vcxproj new file mode 100644 index 0000000..bbfc7ae --- /dev/null +++ b/RSA/RSA.vcxproj @@ -0,0 +1,123 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {9E9FB2D1-5B04-4064-B5EC-9F645719DB78} + RSA + 10.0.16299.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + \ No newline at end of file diff --git a/RSA/RSA.vcxproj.filters b/RSA/RSA.vcxproj.filters new file mode 100644 index 0000000..401028b --- /dev/null +++ b/RSA/RSA.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + \ No newline at end of file diff --git a/SHA1/SHA1.vcxproj b/SHA1/SHA1.vcxproj new file mode 100644 index 0000000..82395bd --- /dev/null +++ b/SHA1/SHA1.vcxproj @@ -0,0 +1,122 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {2CB4EC0F-FE3F-413F-A27D-0BB3C8CF84EB} + SHA1 + 10.0.16299.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + \ No newline at end of file diff --git a/SHA1/SHA1.vcxproj.filters b/SHA1/SHA1.vcxproj.filters new file mode 100644 index 0000000..6a1782f --- /dev/null +++ b/SHA1/SHA1.vcxproj.filters @@ -0,0 +1,17 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + \ No newline at end of file diff --git a/XMath/BigInteger.cpp b/XMath/BigInteger.cpp new file mode 100644 index 0000000..6913d09 --- /dev/null +++ b/XMath/BigInteger.cpp @@ -0,0 +1,122 @@ +#include "BigInteger.h" + +BigInteger::BigInteger(int64_t initialValue) +{ + data = new std::vector(); + + // We know how big this should be and we know the size won't change + static const size_t bytes = sizeof(int64_t); + for (size_t t = 0; t < bytes; ++t) data->push_back((initialValue >> (t * 8)) & 255); +} + +BigInteger::BigInteger(BigInteger & initialvalue) +{ + size_t size = initialvalue.data->size(); + data = new std::vector(size); + for (size_t t = 0; t < size; ++t) data->push_back(initialvalue.data->at(t)); + sign = initialvalue.sign; +} + +BigInteger * BigInteger::operator+(const BigInteger & val) +{ + return nullptr; +} + +BigInteger * BigInteger::operator*(const BigInteger & val) +{ + return nullptr; +} + +BigInteger * BigInteger::operator/(const BigInteger & val) +{ + return nullptr; +} + +BigInteger * BigInteger::operator^(const BigInteger & val) +{ + return nullptr; +} + +BigInteger * BigInteger::operator&(const BigInteger & val) +{ + return nullptr; +} + +BigInteger * BigInteger::operator|(const BigInteger & val) +{ + return nullptr; +} + +BigInteger * BigInteger::operator~() +{ + return nullptr; +} + +BigInteger * BigInteger::operator<<(int64_t shiftcount) +{ + return nullptr; +} + +BigInteger * BigInteger::operator>>(int64_t shiftcount) +{ + return nullptr; +} + +void BigInteger::iadd(const BigInteger & val) +{ +} + +void BigInteger::isub(const BigInteger & val) +{ +} + +void BigInteger::imul(const BigInteger & val) +{ +} + +void BigInteger::idiv(const BigInteger & val) +{ +} + +void BigInteger::ixor(const BigInteger & val) +{ +} + +void BigInteger::iand(const BigInteger & val) +{ +} + +void BigInteger::ior(const BigInteger & val) +{ +} + +void BigInteger::inot(const BigInteger & val) +{ +} + +void BigInteger::ishl(int64_t shift) +{ +} + +void BigInteger::ishr(int64_t shift) +{ +} + +char BigInteger::shift_mask(int64_t shift, bool left) +{ + return 0; +} + +void BigInteger::clip_zeroes() +{ +} + +size_t BigInteger::highest_set_bit(bool & hasbits) +{ + return size_t(); +} + +size_t BigInteger::lowest_set_bit(bool & hasbits) +{ + return size_t(); +} diff --git a/XMath/BigInteger.h b/XMath/BigInteger.h new file mode 100644 index 0000000..7a5baa7 --- /dev/null +++ b/XMath/BigInteger.h @@ -0,0 +1,45 @@ +#pragma once + +#include + +class BigInteger { +public: + BigInteger(int64_t initialValue); + BigInteger(BigInteger& initialvalue); + + // These should just create a new bigint and call the internal functions on it + BigInteger* operator+(const BigInteger& val); + BigInteger* operator-(const BigInteger& val); + BigInteger* operator*(const BigInteger& val); + BigInteger* operator/(const BigInteger& val); + BigInteger* operator^(const BigInteger& val); + BigInteger* operator&(const BigInteger& val); + BigInteger* operator|(const BigInteger& val); + BigInteger* operator~(); + BigInteger* operator<<(int64_t shiftcount); + BigInteger* operator>>(int64_t shiftcount); + +protected: + std::vector* data; + bool sign; + + // Internal functions: manipulate the object they are called on + void iadd(const BigInteger& val); + void isub(const BigInteger& val); + void imul(const BigInteger& val); + void idiv(const BigInteger& val); + void ixor(const BigInteger& val); + void iand(const BigInteger& val); + void ior(const BigInteger& val); + void inot(const BigInteger& val); + void ishl(int64_t shift); + void ishr(int64_t shift); + + // Math helper functions + char shift_mask(int64_t shift, bool left); + + // For sorting and whatnot + void clip_zeroes(); + size_t highest_set_bit(bool& hasbits); + size_t lowest_set_bit(bool& hasbits); +}; \ No newline at end of file diff --git a/XMath/XMath.vcxproj b/XMath/XMath.vcxproj new file mode 100644 index 0000000..8a47aae --- /dev/null +++ b/XMath/XMath.vcxproj @@ -0,0 +1,126 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {5F9AD03F-B1F0-4DB3-B39A-49B66895774C} + XMath + 10.0.16299.0 + + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + Application + true + v141 + MultiByte + + + Application + false + v141 + true + MultiByte + + + + + + + + + + + + + + + + + + + + + + + Level3 + Disabled + true + true + + + + + Level3 + Disabled + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + Level3 + MaxSpeed + true + true + true + true + + + true + true + + + + + + + + + + + + \ No newline at end of file diff --git a/XMath/XMath.vcxproj.filters b/XMath/XMath.vcxproj.filters new file mode 100644 index 0000000..a5351ad --- /dev/null +++ b/XMath/XMath.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Header Files + + + + + Source Files + + + \ No newline at end of file