1.3 KiB
1.3 KiB
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 "@preview/jumble:0.0.1" ... #jumble.md5(...)
- import only the functions you need:
#import "@preview/jumble:0.0.1": md5 ... #md5(...)
- import everything:
#import "@preview/jumble:0.0.1": * ... #md5(...)
Examples
Typst | Result |
---|---|
|
|
|
|
(more documentation and examples are provided in the manual)