A Typst package providing some hash functions and related stuff
gallery | ||
src | ||
gallery.bash | ||
manual.pdf | ||
manual.typ | ||
README.md | ||
typst.toml |
Jumble is Typst package providing some common hashing functions, as well as other related algorithms.
Available methods
- MD4
- MD5
- SHA1
- HMAC
- NTLM
- TOTP
- Base32 encoding / decoding
Usage
For information, please refer to the manual
To use this package, you can either:
- import the package as a module:
#import "jumble/src/lib.typ" as jumble ... #jumble.md5(...)
- import the functions you need from
src/lib.typ
:#import "jumble/src/lib.typ": md5 ... #md5(...)
- import everything:
#import "jumble/src/lib.typ": * ... #md5(...)
Examples
Typst | Result |
---|---|
|
|
|
|
(more documentation and examples are provided in the manual)