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
- Host: GitHub
- URL: https://github.com/oklein1/cryptography-clojure
- Owner: Oklein1
- License: other
- Created: 2022-08-15T16:45:28.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-18T01:59:47.000Z (almost 3 years ago)
- Last Synced: 2025-02-01T10:42:25.967Z (4 months ago)
- Topics: cipher-algorithms, clojure, cryptography
- Language: Clojure
- Homepage:
- Size: 265 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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