diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-03-03 12:08:18 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-03-03 12:08:18 -0700 |
| commit | df4cfc2ecf498bf4615ccbaa93438849322bbd18 (patch) | |
| tree | a71611e86cacd8e021190cc4755574c514acb5c7 /lib/std/crypto.zig | |
| parent | 72443fb88cfddad8a58868c150eaf5818826cb21 (diff) | |
| parent | 75ff34db9e93056482233f8476a06f78b4a2f3c2 (diff) | |
| download | zig-df4cfc2ecf498bf4615ccbaa93438849322bbd18.tar.gz zig-df4cfc2ecf498bf4615ccbaa93438849322bbd18.zip | |
Merge remote-tracking branch 'origin/master' into llvm16
Diffstat (limited to 'lib/std/crypto.zig')
| -rw-r--r-- | lib/std/crypto.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/crypto.zig b/lib/std/crypto.zig index 1602fb926c..f46e7b1022 100644 --- a/lib/std/crypto.zig +++ b/lib/std/crypto.zig @@ -47,6 +47,8 @@ pub const auth = struct { /// Core functions, that should rarely be used directly by applications. pub const core = struct { pub const aes = @import("crypto/aes.zig"); + pub const keccak = @import("crypto/keccak_p.zig"); + pub const Ascon = @import("crypto/ascon.zig").State; pub const Gimli = @import("crypto/gimli.zig").State; pub const Xoodoo = @import("crypto/xoodoo.zig").State; |
