Skip to content

Commit

Permalink
std.crypto.aegis: support 256-bit tags (ziglang#15276)
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Apr 14, 2023
1 parent 56d800f commit b42562b
Show file tree
Hide file tree
Showing 2 changed files with 243 additions and 193 deletions.
2 changes: 2 additions & 0 deletions lib/std/crypto.zig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ const root = @import("root");
pub const aead = struct {
pub const aegis = struct {
pub const Aegis128L = @import("crypto/aegis.zig").Aegis128L;
pub const Aegis128L_256 = @import("crypto/aegis.zig").Aegis128L_256;
pub const Aegis256 = @import("crypto/aegis.zig").Aegis256;
pub const Aegis256_256 = @import("crypto/aegis.zig").Aegis256_256;
};

pub const aes_gcm = struct {
Expand Down
Loading

0 comments on commit b42562b

Please sign in to comment.