summaryrefslogtreecommitdiffstats
path: root/cryptopals.go
diff options
context:
space:
mode:
Diffstat (limited to 'cryptopals.go')
-rw-r--r--cryptopals.go12
1 files changed, 11 insertions, 1 deletions
diff --git a/cryptopals.go b/cryptopals.go
index 1c99f22..5d02e56 100644
--- a/cryptopals.go
+++ b/cryptopals.go
@@ -1,4 +1,4 @@
-// Copyright © 2021 siddharth <s@ricketyspace.net>
+// Copyright © 2021 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package main
@@ -92,5 +92,15 @@ func main() {
challenge.C35(flag.Args())
case 36:
challenge.C36(flag.Args())
+ case 37:
+ challenge.C37(flag.Args())
+ case 38:
+ challenge.C38(flag.Args())
+ case 39:
+ challenge.C39()
+ case 40:
+ challenge.C40()
+ case 41:
+ challenge.C41()
}
}