aboutsummaryrefslogtreecommitdiff
path: root/docs/crypto.md
diff options
context:
space:
mode:
authorame <[email protected]>2024-04-11 11:59:56 -0500
committerame <[email protected]>2024-04-11 11:59:56 -0500
commit6ee160004855b492167de13c9539c46e9dcd98c7 (patch)
tree503c383dd9f118fd490690e0e4fa4192c6d8449f /docs/crypto.md
parent67732c42a3c5d98256674f827af1ac4a17015538 (diff)
blake1 complete:3
Diffstat (limited to 'docs/crypto.md')
-rw-r--r--docs/crypto.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/crypto.md b/docs/crypto.md
index 673ec9c..d812a4b 100644
--- a/docs/crypto.md
+++ b/docs/crypto.md
@@ -63,10 +63,10 @@ insane amount anyways). i likely will go back and rewrite all of these to fix bo
| spookyhash32_v2 | 32 | *seed | | n |
| blake2b | length of arg 2 * 8 | *output len (default is 64), *key | | todo |
| blake2s | length of arg 2 * 8 | *output len (default is 32), *key | | todo |
-| blake256 | 256 | nil | | todo |
-| blake224 | 224 | nil | | todo |
-| blake512 | 512 | nil | | todo |
-| blake384 | 384 | nil | | todo |
+| blake256 | 256 | nil | | y |
+| blake224 | 224 | nil | | y |
+| blake512 | 512 | nil | | y |
+| blake384 | 384 | nil | | y |
### usage
@@ -75,7 +75,7 @@ llib.crypto.sha512("meow") -- e88348269bad036160f0d9558b7c5de68163b50e1a6ce46e85
llib.crypto.sha512_t("meow", 224) -- would be sha512/224 - ad5e403e0d74532187f4e1665c7e705ab5eb3c2fe07ae73a3ff998b2
```
-functions supporting updates (listed with %, see note above) can be used like so:
+functions supporting updates (see above) can be used like so:
```lua
obj = llib.crypto.adler32() --adler32_init is equivilant to adler32 with no params