diff options
| author | Yawning Angel <yawning@schwanenlied.me> | 2024-08-31 04:10:22 +0900 |
|---|---|---|
| committer | Yawning Angel <yawning@schwanenlied.me> | 2025-03-23 19:14:33 +0900 |
| commit | c2786a6dd5b1645011efa1243945cd34eb51338f (patch) | |
| tree | 0b4db6d5160ba3b36e20c33df6c84c23289003d6 /examples | |
| parent | 9fdcc4e39a4cfd160b36cbd144f77e4502f133f9 (diff) | |
core/crypto/aegis: 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 e95dcb67d..ae43957fb 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -26,6 +26,7 @@ import topological_sort "core:container/topological_sort" import crypto "core:crypto" import aead "core:crypto/aead" +import aegis "core:crypto/aegis" import aes "core:crypto/aes" import blake2b "core:crypto/blake2b" import blake2s "core:crypto/blake2s" @@ -170,6 +171,7 @@ _ :: topological_sort _ :: crypto _ :: crypto_hash _ :: aead +_ :: aegis _ :: aes _ :: blake2b _ :: blake2s |