Releases: ArthurF23/Cryptography
v1.9.0
v1.8.0
Added Bitmap file encryption and decryption. It works the same as text encryption except now you can encrypt bitmap (.bmp) files. The code for the encryptFile()
and decryptFile()
functions are different as they have been redesigned to support more types of file encryption.
What's Changed
- Bitmap encryption addition by @ArthurF23 in #14
Full Changelog: v1.7.0...v1.8.0
v1.7.0
Changed the location of the AES key. The way I did it before didn't allow the key generation to set the key, so I changed it. It is now located at AES::KEY::key
Full Changelog: v1.6.0...v1.7.0
v1.6.0
v1.5.0
Added lossless compression to encryptFile()
. encryptFile()
originally outputted the encrypted binary, then I added bloat to make it more confusing to look at, somewhat fake data if you will, now it compresses the binary string before getting bloated, therefor bloating wont take as long and it takes less space.
- 1.5.0 compression implementation by @ArthurF23 in #13
Full Changelog: v1.4.0...v1.5.0
v1.4.0
v1.3.0
What's Changed
- v1.3.0 by @ArthurF23 in #10
Full Changelog: v1.2.0...v1.3.0
Moved all code related to the examples to main.cpp to reduce the size of the header file. Also now that the examples are in one place, the example on how to use the code is much easier to access and understand. I also added examples for each feature offered in the header.