summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--info.rkt25
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" ())))