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

https://github.com/oklein1/cryptography-clojure

Clojure implementation of ciphers
https://github.com/oklein1/cryptography-clojure

cipher-algorithms clojure cryptography

Last synced: 2 months ago
JSON representation

Clojure implementation of ciphers

Awesome Lists containing this project

README

        

# Cyptographic adventures

Because I'm currently interested in cryptography, I decided to work out my studies by implementing the encoders and decoders in Clojure.

### Caeser Cipher

The first algorithm is a very basic implementation of the "Caesar Cipher." The code does not yet handle special characters. It only handles ASCII numerics from 97 ("a") to 123 ("z"). The program also only handles the text in lowercase.

...more programs to come