summaryrefslogtreecommitdiffstats
path: root/cryptopals.go
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2022-06-30 21:41:13 -0400
committersiddharth ravikumar <s@ricketyspace.net>2022-06-30 21:41:13 -0400
commita1ef92cc8c029b8380d0b87075d2a4472debca6a (patch)
tree35c438343c251aa0fc02a51995bddae61b22f2d0 /cryptopals.go
parentc8dc45786cfb68434429e96b8b4eeb0d8481dce1 (diff)
challenge: c38: implement simplified srp
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 0bb909b..82627e0 100644
--- a/cryptopals.go
+++ b/cryptopals.go
@@ -94,5 +94,7 @@ func main() {
challenge.C36(flag.Args())
case 37:
challenge.C37(flag.Args())
+ case 38:
+ challenge.C38(flag.Args())
}
}