diff options
| author | Yawning Angel <yawning@schwanenlied.me> | 2024-08-03 03:05:45 +0900 |
|---|---|---|
| committer | Yawning Angel <yawning@schwanenlied.me> | 2024-08-10 18:32:37 +0900 |
| commit | ba1ad82c2b13aead2ec0c6450dd3b45420b84748 (patch) | |
| tree | 0ff642ef958ab8569c7d0b11fabf86aa363fc981 /examples | |
| parent | 38aea1f9077b5f9f8f3ec59a0972e762aca4c112 (diff) | |
core/crypto/aead: 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 d92a6b8c4..62b891352 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -25,6 +25,7 @@ import rbtree "core:container/rbtree" import topological_sort "core:container/topological_sort" import crypto "core:crypto" +import aead "core:crypto/aead" import aes "core:crypto/aes" import blake2b "core:crypto/blake2b" import blake2s "core:crypto/blake2s" @@ -164,6 +165,7 @@ _ :: rbtree _ :: topological_sort _ :: crypto _ :: crypto_hash +_ :: aead _ :: aes _ :: blake2b _ :: blake2s |