https://github.com/arihantbansal/cryptopals-rust
https://github.com/arihantbansal/cryptopals-rust
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arihantbansal/cryptopals-rust
- Owner: arihantbansal
- Created: 2023-07-04T17:54:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-31T06:00:45.000Z (over 1 year ago)
- Last Synced: 2025-02-03T11:17:50.197Z (4 months ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solutions to [Cryptopals](https://cryptopals.com/) challenges in Rust
## Dependencies
- Rustc nightly
- Cargo## Challenges
### Set 1 - Basics
- [x] [Convert hex to base64](src/set1/chall1.rs)
- [x] [Fixed XOR](src/set1/chall2.rs)