diff options
author | rsiddharth <s@ricketyspace.net> | 2020-09-06 22:44:19 -0400 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2020-09-06 22:44:19 -0400 |
commit | 22fdf192dd524379bc4f45f0e10c01a72f577906 (patch) | |
tree | eb2f6f9e84e0a1e44abbeae31adc872ee79ed1f1 /cryptopals.go | |
parent | 43de355db213316608a9c1bd914a23a34c98af5f (diff) |
update main
* cryptopals.go (main): Add handling to run challenge 6.
Diffstat (limited to 'cryptopals.go')
-rw-r--r-- | cryptopals.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cryptopals.go b/cryptopals.go index 0d0a557..0886a5d 100644 --- a/cryptopals.go +++ b/cryptopals.go @@ -28,5 +28,7 @@ func main() { challenge.C4() case 5: challenge.C5() + case 6: + challenge.C6() } } |