summaryrefslogtreecommitdiffstats
path: root/cryptopals.go
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2021-10-17 12:01:23 -0400
committersiddharth <s@ricketyspace.net>2021-10-17 12:01:23 -0400
commitbf3201f153178c05d41c4ea8f4ae6191cee8a6d6 (patch)
tree6f16d97675071f84010467342d481c9b4f62bdc4 /cryptopals.go
parentee2a527ec332ced4eee237b9f752519ce0a92c4d (diff)
challenge: do challenge 32
Diffstat (limited to 'cryptopals.go')
-rw-r--r--cryptopals.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/cryptopals.go b/cryptopals.go
index 978d68e..42483c2 100644
--- a/cryptopals.go
+++ b/cryptopals.go
@@ -82,5 +82,7 @@ func main() {
challenge.C30()
case 31:
challenge.C31(*s)
+ case 32:
+ challenge.C32(*s)
}
}