summaryrefslogtreecommitdiffstats
path: root/challenge
Commit message (Collapse)AuthorAgeFilesLines
...
* challenge/c06.go: refactorrsiddharth2021-02-241-98/+96
| | | | Keep everything inside C6
* challenge/c05.go: refactorrsiddharth2021-02-242-7/+5
| | | | Keep everything inside C5
* challenge/c04.go: refactorrsiddharth2021-02-241-35/+32
| | | | Keep everything inside C4
* challenge/c03.go: gofmtrsiddharth2021-02-241-0/+1
|
* challenge/c02.go: gofmtrsiddharth2021-02-241-0/+1
|
* challenge/c01.go: gofmtrsiddharth2021-02-241-0/+1
|
* challenge/c17.go: update outputrsiddharth2021-02-211-0/+1
|
* challenge: do challenge 17rsiddharth2021-02-211-0/+184
|
* lib: update Pkcs7PaddingUndo, AESDecryptCBCrsiddharth2021-02-113-12/+22
| | | | | Add error as the second return value to Pkcs7PaddingUndo and AESDecryptCBC.
* challenge: update ch16rsiddharth2021-02-011-32/+16
| | | | | | | - Don't use AESDecryptCBC directly for the bitflap attack. - Use just function 1 (cbcBitFlipEncrypt) and 2 (cbcBitFlipDecryptHasAdmin) to modify the cipher to produce the needed ';admin=true;' in the de-ciphered text.
* challenge: do challenge 16rsiddharth2021-01-301-0/+120
|
* challenge: update C15rsiddharth2021-01-261-2/+2
|
* challenge: do challenge 15rsiddharth2021-01-261-0/+40
|
* challenge: add output for challenge 14rsiddharth2021-01-251-0/+7
|
* challenge: freshSheepBlock -> freshSheepBytesrsiddharth2021-01-252-8/+8
|
* challenge: do challenge 14rsiddharth2021-01-251-0/+128
|
* challenge: fix findUnknownStringCharacteristicsrsiddharth2021-01-191-1/+1
|
* challenge/ch13.go -> challenge/c13.gorsiddharth2020-12-211-0/+0
|
* do challenge 13rsiddharth2020-12-211-0/+30
|
* challenge: do challenge 12rsiddharth2020-12-131-0/+121
|
* lib/blocks: rename CipherIsECB -> CipherUsesECBrsiddharth2020-12-122-2/+2
|
* do challenge 11rsiddharth2020-12-101-0/+37
|
* lib/blocks: BlockIsECB -> CipherIsECBrsiddharth2020-12-091-1/+1
|
* lib/aes: update AESEncryptCBCrsiddharth2020-12-091-11/+7
| | | | Add padding
* lib/blocks: move isECB from ch. 8 in here as BlockIsECBrsiddharth2020-12-081-24/+1
|
* challenge: fix typo in challenge 08rsiddharth2020-12-061-2/+2
|
* challenge: fix challenge 08rsiddharth2020-12-061-4/+4
|
* challenge: complete challenge 10rsiddharth2020-12-061-4/+24
|
* lib/aes: AESDecrypt -> AESDecryptECBrsiddharth2020-12-051-1/+1
|
* challenge: c10: specify data type for NIST SP 800-38A varsrsiddharth2020-12-051-3/+3
|
* challenge: c10: cosmetic edit to cryptopals 10 testrsiddharth2020-12-051-8/+4
|
* challenge: c10: cosmetic edit to NIST SP 800-38A testrsiddharth2020-12-051-12/+13
|
* challenge: ch10: add NIST SP 800-38A F.2.2 decryption testrsiddharth2020-12-051-83/+97
|
* challenge: do some of challenge 10rsiddharth2020-12-051-0/+175
|
* challenge/09: change block size to 20rsiddharth2020-11-281-3/+2
|
* challenge/09: add outputrsiddharth2020-11-281-0/+6
|
* challenge: do challenge 09rsiddharth2020-11-281-0/+15
|
* challenge: c07: update outputrsiddharth2020-11-251-1/+1
|
* challenge: c06: add outputrsiddharth2020-11-251-48/+133
|
* challenge: c05: add outputrsiddharth2020-11-251-0/+5
|
* challenge: c04: add outputrsiddharth2020-11-251-28/+35
| | | | And move C4 function to the top.
* challenge: c03: add outputrsiddharth2020-11-251-0/+5
|
* challenge: c02: add outputrsiddharth2020-11-251-0/+4
|
* challenge: c01: add outputrsiddharth2020-11-251-0/+4
|
* challenge: c08: add outputrsiddharth2020-11-251-0/+5
|
* challenge: c08: update C8rsiddharth2020-11-251-5/+9
| | | | Show the 16-byte block that occurs more than once in the cipher text.
* challenge: do challenge 08rsiddharth2020-11-251-0/+249
|
* challenge: do challenge 7rsiddharth2020-11-221-0/+166
|
* challenge: do challenge 6rsiddharth2020-09-061-0/+122
| | | | * challenge/c06.go: Implement challenge 6.
* 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.