summaryrefslogtreecommitdiffstats
path: root/cryptopals.go
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-11-22 12:53:41 -0500
committerrsiddharth <s@ricketyspace.net>2020-11-22 12:53:41 -0500
commit7ba0e472e588ff36422290f3a5a841faaf221c5e (patch)
tree55a86f327154eed03fec954777ba6a60cefbd7b4 /cryptopals.go
parentec529a53df78dcda5f7f676071e4d6048c9e1a9b (diff)
cryptopals.go: add challange 7
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 0886a5d..2baa397 100644
--- a/cryptopals.go
+++ b/cryptopals.go
@@ -30,5 +30,7 @@ func main() {
challenge.C5()
case 6:
challenge.C6()
+ case 7:
+ challenge.C7()
}
}