From a1ef92cc8c029b8380d0b87075d2a4472debca6a Mon Sep 17 00:00:00 2001 From: siddharth ravikumar Date: Thu, 30 Jun 2022 21:41:13 -0400 Subject: challenge: c38: implement simplified srp --- cryptopals.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cryptopals.go') 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()) } } -- cgit v1.2.3