aboutsummaryrefslogtreecommitdiff
path: root/lib/std/crypto.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-09-29 15:18:06 -0400
committerGitHub <noreply@github.com>2020-09-29 15:18:06 -0400
commita1ae3f92c1cdbae2333d26ad5da224b91e20cb6f (patch)
treeaff26022bffd2f47e7b5f3647648bb7bedaca094 /lib/std/crypto.zig
parent65b03092e3414f920de8df9cac60cf973ff56b37 (diff)
parent8d67f15d36bdd1a094596876796c77606a5e4a83 (diff)
downloadzig-a1ae3f92c1cdbae2333d26ad5da224b91e20cb6f.tar.gz
zig-a1ae3f92c1cdbae2333d26ad5da224b91e20cb6f.zip
Merge pull request #6442 from jedisct1/aegis
std/crypto: add the AEGIS AEADs
Diffstat (limited to 'lib/std/crypto.zig')
-rw-r--r--lib/std/crypto.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/crypto.zig b/lib/std/crypto.zig
index 5763348729..fa69d51d4d 100644
--- a/lib/std/crypto.zig
+++ b/lib/std/crypto.zig
@@ -28,6 +28,8 @@ pub const aead = struct {
pub const Gimli = @import("crypto/gimli.zig").Aead;
pub const ChaCha20Poly1305 = chacha20.Chacha20Poly1305;
pub const XChaCha20Poly1305 = chacha20.XChacha20Poly1305;
+ pub const AEGIS128L = @import("crypto/aegis.zig").AEGIS128L;
+ pub const AEGIS256 = @import("crypto/aegis.zig").AEGIS256;
};
/// MAC functions requiring single-use secret keys.