Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/derekxkwan/cryptopals-solutions
cryptopals solutions
https://github.com/derekxkwan/cryptopals-solutions
crypto cryptopals racket
Last synced: 17 days ago
JSON representation
cryptopals solutions
- Host: GitHub
- URL: https://github.com/derekxkwan/cryptopals-solutions
- Owner: derekxkwan
- Created: 2018-07-18T01:10:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-23T02:12:13.000Z (over 6 years ago)
- Last Synced: 2024-11-17T09:16:37.503Z (3 months ago)
- Topics: crypto, cryptopals, racket
- Language: Racket
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cryptopals-solutions
solutions to the [cryptopals](https://cryptopals.com/) crypto challenges in Racket organized by problem set
- filenames take the format `x_y.rkt` where x is the problem set and y is the challenge number
- **progress so far** - completed set1: 1,2,3,4## Notes
### Set 1
- my custom functions for hex encoding/decoding and base64 encoding are found in `set_1/hex_base64.rkt`, which is called by my solution files
- 1_3.rkt is modularized for use in other files, use `racket set_1/1_3.rkt run` to run the file