diff options
author | siddharth <s@ricketyspace.net> | 2021-11-21 18:48:19 -0500 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2021-11-21 18:48:19 -0500 |
commit | 3ff71584470289dbd84cba9bd1896e197c41a8e1 (patch) | |
tree | 8f435d4aead7f2ce69dc7cc08e3b156ba60a12d8 /cryptopals.go | |
parent | 2b52444043b26a01cc1eb82c456e325916e25194 (diff) |
challenge: do challenge 33
Diffstat (limited to 'cryptopals.go')
-rw-r--r-- | cryptopals.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cryptopals.go b/cryptopals.go index dc63c88..180d5dc 100644 --- a/cryptopals.go +++ b/cryptopals.go @@ -84,5 +84,7 @@ func main() { challenge.C31(*s) case 32: challenge.C32(*s) + case 33: + challenge.C33() } } |