tvl-depot/users/wpcarro/scratch/cryptopals
William Carroll fad38387af feat(wpcarro/cryptopals): Support repeating key cipher
I think this is a form of symmetric encryption where the passphrase (e.g. "ICE")
is repeated (e.g. "ICEICEICEICEI...") until it matches the length of the
cleartext string; after that, the two byte-strings are XOR'd against one another
and then encoded as hexadecimal creating the ciphertext.

Change-Id: Ib148f06d6c42a41377d1df1f0738d77da935a9f6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4789
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
2022-01-08 05:51:16 +00:00
..
set1 feat(wpcarro/cryptopals): Support repeating key cipher 2022-01-08 05:51:16 +00:00
.gitignore fix(wpcarro/cryptopals): Update cleartext scoring algorithm 2022-01-08 05:51:15 +00:00
README.md feat(wpcarro/scratch): Upload my solutions to cryptopals 2021-12-29 19:34:02 +00:00

cryptopals

My solutions for some of the questions at https://cryptopals.com.