summaryrefslogtreecommitdiff
path: root/info.rkt
blob: 0954a59c2a6ad2189003c49421db9a9ef1dae8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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 datastructures net))
(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" ())))