From 3b0fb163cbac08a36b01f186b72e2a9cee4b7a2d Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sat, 29 Aug 2020 20:00:53 -0400 Subject: challenge: do challenge 3 * challenge/c03.go: Implement challenge 3 * cryptopals.go (main): Add handling to run challenge 3 * lib/brute.go (XORCrackSingleKey): New function. * lib/hex.go (HexStrToAsciiStr, ByteToHexStr): New functions. * lib/str.go (FillStr): New function. --- cryptopals.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cryptopals.go') diff --git a/cryptopals.go b/cryptopals.go index 37580be..5faa363 100644 --- a/cryptopals.go +++ b/cryptopals.go @@ -22,5 +22,7 @@ func main() { challenge.C1() case 2: challenge.C2() + case 3: + challenge.C3() } } -- cgit v1.2.3