Skip to content

Commit a1ae3f9

Browse files
authored
Merge pull request #6442 from jedisct1/aegis
std/crypto: add the AEGIS AEADs
2 parents 65b0309 + 8d67f15 commit a1ae3f9

File tree

5 files changed

+494
-13
lines changed

5 files changed

+494
-13
lines changed

lib/std/crypto.zig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ pub const aead = struct {
2828
pub const Gimli = @import("crypto/gimli.zig").Aead;
2929
pub const ChaCha20Poly1305 = chacha20.Chacha20Poly1305;
3030
pub const XChaCha20Poly1305 = chacha20.XChacha20Poly1305;
31+
pub const AEGIS128L = @import("crypto/aegis.zig").AEGIS128L;
32+
pub const AEGIS256 = @import("crypto/aegis.zig").AEGIS256;
3133
};
3234

3335
/// MAC functions requiring single-use secret keys.

0 commit comments

Comments
 (0)