summaryrefslogtreecommitdiffstats
path: root/challenge/c05.go
Commit message (Collapse)AuthorAgeFilesLines
* update name in copyrightsiddharth ravikumar2022-05-231-1/+1
| | | | Use full name.
* copyright: rsiddharth -> siddharthsiddharth2021-11-201-1/+1
|
* lib: update RepeatingXORsiddharth2021-06-191-6/+6
| | | | | | - Change input type to []byte. - Change retur type to []byte. - Update RepeatingXOR calls in challenge 5 an 6.
* challenge/c05.go: refactorrsiddharth2021-02-241-6/+4
| | | | Keep everything inside C5
* challenge: c05: add outputrsiddharth2020-11-251-0/+5
|
* lib: BytesToHexStr -> AsciiStrToHexStrrsiddharth2020-08-311-1/+1
| | | | | | * challenge/c05.go (C5): Change BytesToHexStr call to AsciiStrToHexStr * lib/hex.go (BytesToHexStr): Rename to... (AsciiStrToHexStr): ...this. Change argument to string.
* challenge: do challenge 5rsiddharth2020-08-301-0/+21
* challenge/c05.go: Implement challenge 5. * cryptopals.go (main): Add handling to run challenge 5. * lib/hex.go (BytesToHexStr): New function. * lib/xor.go (RepeatingXOR): New function.