summaryrefslogtreecommitdiff
path: root/main.rkt
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-08-18 01:21:19 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-08-18 01:21:19 +0200
commit1eea2ecacef4398d0806042ded266ead9db39de8 (patch)
treeed5d5a1e46c4ad0b6521020f6d6c3ef903429231 /main.rkt
parenta040de5c1f8c505e497149b901ed5ccf42288a53 (diff)
Implement Threefish.
Diffstat (limited to 'main.rkt')
-rw-r--r--main.rkt6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.rkt b/main.rkt
index aadd079..fce39f9 100644
--- a/main.rkt
+++ b/main.rkt
@@ -2,7 +2,8 @@
(require "hmac.rkt"
"whirlpool.rkt"
"salsa-chacha.rkt"
- "cubehash.rkt")
+ "cubehash.rkt"
+ "threefish.rkt")
(provide hmac
whirlpool
@@ -14,4 +15,5 @@
cubehash-256
cubehash-384
cubehash-512
- cubehash-512x)
+ cubehash-512x
+ threefish)