XOREncryption/README.md

9 lines
450 B
Markdown
Raw Normal View History

2013-10-06 22:33:50 +04:00
XOR Encryption
2013-10-06 01:59:02 +04:00
==================
2013-10-06 22:48:52 +04:00
Simple implementation of XOR Encryption/Decrypting in various languages, including C++, Java (Android compatible).
2013-10-06 02:02:51 +04:00
2013-10-06 02:03:24 +04:00
This implementation goes beyond the basic single-key model to use multiple keys in a particular sequence, making it that much more difficult to brute-force.
2013-10-06 02:02:51 +04:00
2013-10-06 02:10:41 +04:00
For an indepth explanation of the code, check out [KyleWBanks.com](http://kylewbanks.com/post/show/Simple-XOR-Encryption-Decryption-in-Cpp).