summaryrefslogtreecommitdiffstats
path: root/cryptopals.go
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2022-04-30 21:15:14 -0400
committersiddharth <s@ricketyspace.net>2022-04-30 21:15:14 -0400
commitc326b0f1ab3d4b920e15dca9f5a8b663f304fe03 (patch)
tree39536bbea72bb99fdecea9a47181165c08825a1b /cryptopals.go
parent4e9e920143b4fa790ce5a4931bd034357950e9d5 (diff)
challenge: c36: implement srp registration
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 b9bef80..1c99f22 100644
--- a/cryptopals.go
+++ b/cryptopals.go
@@ -90,5 +90,7 @@ func main() {
challenge.C34(flag.Args())
case 35:
challenge.C35(flag.Args())
+ case 36:
+ challenge.C36(flag.Args())
}
}