summaryrefslogtreecommitdiffstats
path: root/cryptopals.go
diff options
context:
space:
mode:
Diffstat (limited to 'cryptopals.go')
-rw-r--r--cryptopals.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cryptopals.go b/cryptopals.go
index d24c0f1..bfff39c 100644
--- a/cryptopals.go
+++ b/cryptopals.go
@@ -5,6 +5,7 @@ package main
import (
"flag"
+
"ricketyspace.net/cryptopals/challenge"
)
@@ -50,5 +51,7 @@ func main() {
challenge.C15()
case 16:
challenge.C16()
+ case 17:
+ challenge.C17()
}
}