diff options
| author | Yawning Angel <yawning@schwanenlied.me> | 2024-05-25 20:24:39 +0900 |
|---|---|---|
| committer | Yawning Angel <yawning@schwanenlied.me> | 2024-06-01 22:55:42 +0900 |
| commit | c751e4b2ebe8a2a32aee09c67d7d27872fc2d5e3 (patch) | |
| tree | cdda92e3caeeca1fb3ba1660c11c2aa55daff0df /examples | |
| parent | 1ade62b630f565d975049aa75935c64db175ef61 (diff) | |
core/crypto/aes: Add AES implementation
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 1077df1ae..6c3972987 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 aes "core:crypto/aes" import blake2b "core:crypto/blake2b" import blake2s "core:crypto/blake2s" import chacha20 "core:crypto/chacha20" @@ -150,6 +151,7 @@ _ :: rbtree _ :: topological_sort _ :: crypto _ :: crypto_hash +_ :: aes _ :: blake2b _ :: blake2s _ :: chacha20 |