Crypto
crypto.star
load("crypto@v0", "crypto")
Crypto functions.
Attributes
| Name | Arguments | Returns |
|---|---|---|
| hex | string | string |
| md5 | string | bytes |
| sha1 | string | bytes |
| sha256 | string | bytes |
| sha512 | string | bytes |
crypto.star
# hex
crypto.hex("deterministic")
# md5
crypto.md5("workflows")
# sha1
crypto.sha1("are")
# sha256
crypto.sha256("very")
# sha512
crypto.sha512("cool")