From d1c34703f1a8516c0dc69c7ec975a75b83801975 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Thu, 23 Feb 2012 10:48:37 +0100 Subject: Add info.rkt. --- info.rkt | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 info.rkt 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" ()))) -- cgit v1.2.3