https://github.com/mrmorais/cipher_algorithms
Cipher algorithms implementations in C++
https://github.com/mrmorais/cipher_algorithms
cipher cryptography
Last synced: 11 months ago
JSON representation
Cipher algorithms implementations in C++
- Host: GitHub
- URL: https://github.com/mrmorais/cipher_algorithms
- Owner: mrmorais
- Created: 2017-04-12T19:04:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-12T19:24:12.000Z (about 9 years ago)
- Last Synced: 2025-02-21T22:46:18.907Z (over 1 year ago)
- Topics: cipher, cryptography
- Language: C++
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Cipher Algorithms
Implementation of algorithms proposed in "Understanding Cryptography: a textbook for students and practitioners" by **Christof Paar** and **Jan Pelzl**.
#### About the book
For info about "Understanding Cryptography" and the autors, please visit [this page](http://crypto-textbook.com/).
## Chapters and Algorithms
### Chapter 1 - Introduction to Cryptography and Data Security
**Mathematical concepts:** Modular Arithmetic, Integer Rings.
- Section 1.4.3 - [Shift Cipher (or Caesar Cipher)](https://github.com/mrmorais/cipher_algorithms/tree/master/shift_cipher)
- Section 1.4.4 - [Affine Cipher](https://github.com/mrmorais/cipher_algorithms/tree/master/affine_cipher)