diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2012-02-23 10:48:37 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2012-02-23 10:48:37 +0100 |
commit | d1c34703f1a8516c0dc69c7ec975a75b83801975 (patch) | |
tree | 66399685b8971628b08207e0bc8e8a635ee7e699 | |
parent | 1eea2ecacef4398d0806042ded266ead9db39de8 (diff) |
Add info.rkt.
-rw-r--r-- | info.rkt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/info.rkt b/info.rkt new file mode 100644 index 0000000..f11a93e --- /dev/null +++ b/info.rkt @@ -0,0 +1,25 @@ +#lang setup/infotab +(define name "Mulkrypt") + +(define blurb + '(p () + "A pure-Racket, no-dependencies library of cryptographic algorithms. " + "Implements " + (a ((href "https://en.wikipedia.org/wiki/HMAC")) + "HMAC") + ", the cryptographic hashing functions " + (a ((href "http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html")) + "Whirlpool") + " and " + (a ((href "http://cubehash.cr.yp.to/")) + "CubeHash") + ", and the stream cipher " + (a ((href "http://cr.yp.to/snuffle.html")) + "Salsa20") + ".")) +(define categories '(misc)) +(define version "1.0") +(define can-be-loaded-with 'all) +(define primary-file "main.rkt") +(define homepage "https://matthias.benkard.de/software/mulkrypt") +;;(define scribblings '(("manual.scrbl" ()))) |