diff options
| author | Yawning Angel <yawning@schwanenlied.me> | 2024-09-30 21:32:25 +0900 |
|---|---|---|
| committer | Yawning Angel <yawning@schwanenlied.me> | 2025-03-23 19:14:33 +0900 |
| commit | b220df60b8f6ccb8c5713766e3296393d93eeffe (patch) | |
| tree | f51f97a25da2977b1bca0be5cff81e9d74f71692 /examples | |
| parent | c2786a6dd5b1645011efa1243945cd34eb51338f (diff) | |
core:crypto/deoxysii: Initial import
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_main.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index ae43957fb..0e7648f96 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -33,6 +33,7 @@ import blake2s "core:crypto/blake2s" import chacha20 "core:crypto/chacha20" import chacha20poly1305 "core:crypto/chacha20poly1305" import crypto_hash "core:crypto/hash" +import deoxysii "core:crypto/deoxysii" import ed25519 "core:crypto/ed25519" import hkdf "core:crypto/hkdf" import hmac "core:crypto/hmac" @@ -177,6 +178,7 @@ _ :: blake2b _ :: blake2s _ :: chacha20 _ :: chacha20poly1305 +_ :: deoxysii _ :: ed25519 _ :: hmac _ :: hkdf |