diff options
| author | Frank Denis <github@pureftpd.org> | 2020-09-28 14:50:00 +0200 |
|---|---|---|
| committer | Frank Denis <github@pureftpd.org> | 2020-09-29 17:10:04 +0200 |
| commit | bb1c6bc376f1a30d6dadd4aebcd1ebec6b4c8621 (patch) | |
| tree | 7478e670edceb767c4d2fcf78550f821c782ed07 /lib/std/crypto.zig | |
| parent | 9f274e1f7df65472b0b312cbb6a559ebbaae7e1b (diff) | |
| download | zig-bb1c6bc376f1a30d6dadd4aebcd1ebec6b4c8621.tar.gz zig-bb1c6bc376f1a30d6dadd4aebcd1ebec6b4c8621.zip | |
Add AEGIS-256 as well
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 73ad2ba20b..fa69d51d4d 100644 --- a/lib/std/crypto.zig +++ b/lib/std/crypto.zig @@ -29,6 +29,7 @@ pub const aead = struct { 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. |
