├── Chapter01 ├── base64-chal ├── base64-loop.py ├── caesar1.py ├── caesar2.py ├── caesar3.py ├── caesar4.py ├── caesar5.py ├── hello.py ├── rot13.py ├── xor1.py ├── xor2.py ├── xor2a.py ├── xor3.py ├── xor4.py └── xor5.py ├── Chapter02 ├── chal1a.py ├── chal1b-solution.py ├── chal1c.py ├── chal1d.py ├── chal1e.py ├── chal1f-7digit-solution.py ├── chal2-5-prep.py ├── chal2-5a-solution.py ├── chal2-5b-solution.py ├── chal2-6-prep.py └── chal2-6-solution.py ├── Chapter03 ├── 3-6-Chal2-Solution.txt ├── pador-code.htm └── pador.py ├── LICENSE └── README.md /Chapter01/base64-chal: -------------------------------------------------------------------------------- 1 | U2FtcGxlIHRleHQ= 2 | 3 | -------------------------------------------------------------------------------- /Chapter01/base64-loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/base64-loop.py -------------------------------------------------------------------------------- /Chapter01/caesar1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/caesar1.py -------------------------------------------------------------------------------- /Chapter01/caesar2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/caesar2.py -------------------------------------------------------------------------------- /Chapter01/caesar3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/caesar3.py -------------------------------------------------------------------------------- /Chapter01/caesar4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/caesar4.py -------------------------------------------------------------------------------- /Chapter01/caesar5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/caesar5.py -------------------------------------------------------------------------------- /Chapter01/hello.py: -------------------------------------------------------------------------------- 1 | print "HELLO" 2 | -------------------------------------------------------------------------------- /Chapter01/rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/rot13.py -------------------------------------------------------------------------------- /Chapter01/xor1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/xor1.py -------------------------------------------------------------------------------- /Chapter01/xor2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/xor2.py -------------------------------------------------------------------------------- /Chapter01/xor2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/xor2a.py -------------------------------------------------------------------------------- /Chapter01/xor3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/xor3.py -------------------------------------------------------------------------------- /Chapter01/xor4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/xor4.py -------------------------------------------------------------------------------- /Chapter01/xor5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter01/xor5.py -------------------------------------------------------------------------------- /Chapter02/chal1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal1a.py -------------------------------------------------------------------------------- /Chapter02/chal1b-solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal1b-solution.py -------------------------------------------------------------------------------- /Chapter02/chal1c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal1c.py -------------------------------------------------------------------------------- /Chapter02/chal1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal1d.py -------------------------------------------------------------------------------- /Chapter02/chal1e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal1e.py -------------------------------------------------------------------------------- /Chapter02/chal1f-7digit-solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal1f-7digit-solution.py -------------------------------------------------------------------------------- /Chapter02/chal2-5-prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal2-5-prep.py -------------------------------------------------------------------------------- /Chapter02/chal2-5a-solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal2-5a-solution.py -------------------------------------------------------------------------------- /Chapter02/chal2-5b-solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal2-5b-solution.py -------------------------------------------------------------------------------- /Chapter02/chal2-6-prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal2-6-prep.py -------------------------------------------------------------------------------- /Chapter02/chal2-6-solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter02/chal2-6-solution.py -------------------------------------------------------------------------------- /Chapter03/3-6-Chal2-Solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter03/3-6-Chal2-Solution.txt -------------------------------------------------------------------------------- /Chapter03/pador-code.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter03/pador-code.htm -------------------------------------------------------------------------------- /Chapter03/pador.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/Chapter03/pador.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-On-Cryptography-with-Python/HEAD/README.md --------------------------------------------------------------------------------