diceware.scm (1077B)
1 (define-library (kakafarm software diceware) 2 (import (guile)) 3 (export make-sxml) 4 5 (begin 6 (define* (make-sxml #:key posts) 7 `(div 8 (h2 "Rusty Diceware") 9 (p 10 (a (@ (href "https://gitlab.com/yuvallanger/rusty-diceware/")) 11 "A diceware tool in Rustlang.")) 12 13 (pre "$ diceware --help 14 Usage: diceware [options] 15 16 Options: 17 -h, --help This help message. 18 -e, --entropy Display number of entropy bits. 19 -r, --dicerolls Provide results of physical dice rolls. Word per line, 20 same digit order as in the files, digits between and 21 including 1 and 6. 22 -n, --nword NWORD Number of words in a passphrase. 23 -d, --delimiter DELIM 24 The delimiter character used to separate the words. 25 -f, --wordlist-file FILE 26 Path to a wordlist file. 27 -l, --wordlist WORDLIST 28 Wordlist to use. (efflong (default), effshort1, 29 effshort2, minilock, reinhold, or beale)")))))