Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/)