Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 329 Bytes

README.md

File metadata and controls

7 lines (6 loc) · 329 Bytes

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.