1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-21 01:27:14 +02:00

Add a quick and simple implementation of base64 encryption and Whirpool hashing algorithm.

This commit is contained in:
Sandu Liviu Catalin
2017-06-16 23:31:20 +03:00
parent 4b1e3909a4
commit f86f3c8433
12 changed files with 1568 additions and 0 deletions

View File

@ -415,7 +415,22 @@
<Linker>
<Add library="squirrel" />
</Linker>
<Unit filename="../external/B64/decode.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="../external/B64/encode.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="../external/Common/aes256.cpp" />
<Unit filename="../external/Common/byte_order.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="../external/Common/whirlpool.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="../external/Common/whirlpool_sbox.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="../external/Hash/crc32.cpp" />
<Unit filename="../external/Hash/crc32.h" />
<Unit filename="../external/Hash/digest.cpp" />