aboutsummaryrefslogtreecommitdiff
path: root/examples/all
diff options
context:
space:
mode:
authorYawning Angel <yawning@schwanenlied.me>2024-05-25 20:24:39 +0900
committerYawning Angel <yawning@schwanenlied.me>2024-06-01 22:55:42 +0900
commitc751e4b2ebe8a2a32aee09c67d7d27872fc2d5e3 (patch)
treecdda92e3caeeca1fb3ba1660c11c2aa55daff0df /examples/all
parent1ade62b630f565d975049aa75935c64db175ef61 (diff)
core/crypto/aes: Add AES implementation
Diffstat (limited to 'examples/all')
-rw-r--r--examples/all/all_main.odin2
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