diff options
| author | Yawning Angel <yawning@schwanenlied.me> | 2024-08-20 12:03:04 +0900 |
|---|---|---|
| committer | Yawning Angel <yawning@schwanenlied.me> | 2025-03-23 19:14:33 +0900 |
| commit | 9fdcc4e39a4cfd160b36cbd144f77e4502f133f9 (patch) | |
| tree | d39c933d625a541e5c1f1ba3d881b1df4beba4f5 /examples | |
| parent | bb395aeb41873632c35846f2077eea01a69ce1c1 (diff) | |
core/crypto/x448: 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 4a8a198d3..e95dcb67d 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -48,6 +48,7 @@ import shake "core:crypto/shake" import sm3 "core:crypto/sm3" import tuplehash "core:crypto/tuplehash" import x25519 "core:crypto/x25519" +import x448 "core:crypto/x448" import pe "core:debug/pe" import trace "core:debug/trace" @@ -190,6 +191,7 @@ _ :: shake _ :: sm3 _ :: tuplehash _ :: x25519 +_ :: x448 _ :: pe _ :: trace _ :: dynlib |