diff options
| author | jedisct1 <jedisct1@noreply.codeberg.org> | 2025-11-28 09:10:20 +0100 |
|---|---|---|
| committer | jedisct1 <jedisct1@noreply.codeberg.org> | 2025-11-28 09:10:20 +0100 |
| commit | e6d19a07d23f6724ff9c7255976d54bb9ad33d29 (patch) | |
| tree | 3746ab0284a2c14797ca7c097a81bb89badca67f /lib/std/crypto.zig | |
| parent | fbafbd426268e0bbd3c938936459d680dc4eaaa6 (diff) | |
| parent | ca96d853ffaceae85f8038bb3abb6ca188c0a3e1 (diff) | |
| download | zig-e6d19a07d23f6724ff9c7255976d54bb9ad33d29.tar.gz zig-e6d19a07d23f6724ff9c7255976d54bb9ad33d29.zip | |
Merge pull request 'std.crypto: add hybrid post-quantum/traditional key encapsulation' (#30010) from jedisct1/zig:hybridkem into master
Reviewed-on: https://codeberg.org/ziglang/zig/pulls/30010
Diffstat (limited to 'lib/std/crypto.zig')
| -rw-r--r-- | lib/std/crypto.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/crypto.zig b/lib/std/crypto.zig index 1da25abe17..a942d6538f 100644 --- a/lib/std/crypto.zig +++ b/lib/std/crypto.zig @@ -116,6 +116,7 @@ pub const dh = struct { /// Key Encapsulation Mechanisms. pub const kem = struct { + pub const hybrid = @import("crypto/hybrid_kem.zig"); pub const kyber_d00 = @import("crypto/ml_kem.zig").d00; pub const ml_kem = @import("crypto/ml_kem.zig").nist; }; |
