Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/couto/cryptology
Personal repository to store some historical cryptographic algorithms
https://github.com/couto/cryptology
Last synced: about 8 hours ago
JSON representation
Personal repository to store some historical cryptographic algorithms
- Host: GitHub
- URL: https://github.com/couto/cryptology
- Owner: Couto
- Created: 2015-07-03T19:08:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-13T17:42:39.000Z (over 9 years ago)
- Last Synced: 2024-04-14T07:55:36.176Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cryptology
This is a small repository with my attempt to implement some historical cryptographic algorithms while also learning ES6, this is mostly for educational purposes.
Current implementations are quite naïve, and no security or optimization measures are considered while implementing them, also most of these algorithms are no longer considered secure, so don't even attempt to use them in real applications.
## Implemented Ciphers
* [x] [Caesar Cipher](https://en.wikipedia.org/wiki/Caesar_cipher)
* [x] [Simple Substitution Cipher](https://en.wikipedia.org/wiki/Substitution_cipher)
* [x] [Playfair Cipher](https://en.wikipedia.org/wiki/Playfair_cipher)
* [x] [Vigenère Cipher](https://en.wikipedia.org/wiki/Vigen%C3%A8re_cipher)
* [ ] [Affine Cipher]()
* [ ] [Enigma Cipher]()## Instructions
```bash
git clone [email protected]:Couto/cryptology
cd cryptology
npm install
npm test
```and open your browser on [http://localhost:8080/](http://localhost:8080/)