https://github.com/3urobeat/scrapyard
🚯 Collection of stuff that is too good to go but has no real place anywhere else
https://github.com/3urobeat/scrapyard
collection cryptography gists practice scrapyard
Last synced: 8 months ago
JSON representation
🚯 Collection of stuff that is too good to go but has no real place anywhere else
- Host: GitHub
- URL: https://github.com/3urobeat/scrapyard
- Owner: 3urobeat
- Created: 2023-12-16T12:30:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-08T16:28:34.000Z (almost 2 years ago)
- Last Synced: 2024-11-24T16:49:39.895Z (over 1 year ago)
- Topics: collection, cryptography, gists, practice, scrapyard
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# scrapyard
Collection of stuff that is too good to go but has no real place anywhere else.
## Content
### symmetricCipher.c
Manual implementation of a symmetric cipher algorithm for encoding and decoding text using a key.
The algorithm is implemented using a XOR operation on every bit, like you'd do on paper, for practice.