diff options
| author | daurnimator <quae@daurnimator.com> | 2019-06-16 03:02:47 +1000 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-06-16 22:55:38 -0400 |
| commit | 6ce2a03985db3094634742ae2209477de998e70a (patch) | |
| tree | f36a10a088f774aaf48b5ead7e9e228bea429601 /std/crypto.zig | |
| parent | 72029c2fc8083b1c0f2501cfc9e24d3fca4d66c2 (diff) | |
| download | zig-6ce2a03985db3094634742ae2209477de998e70a.tar.gz zig-6ce2a03985db3094634742ae2209477de998e70a.zip | |
std: add gimli permutation to crypto
Diffstat (limited to 'std/crypto.zig')
| -rw-r--r-- | std/crypto.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/std/crypto.zig b/std/crypto.zig index 2b57de9e60..b7703f2f7a 100644 --- a/std/crypto.zig +++ b/std/crypto.zig @@ -13,6 +13,8 @@ pub const Sha3_256 = sha3.Sha3_256; pub const Sha3_384 = sha3.Sha3_384; pub const Sha3_512 = sha3.Sha3_512; +pub const gimli = @import("crypto/gimli.zig"); + const blake2 = @import("crypto/blake2.zig"); pub const Blake2s224 = blake2.Blake2s224; pub const Blake2s256 = blake2.Blake2s256; @@ -38,6 +40,7 @@ pub const randomBytes = std.os.getrandom; test "crypto" { _ = @import("crypto/blake2.zig"); _ = @import("crypto/chacha20.zig"); + _ = @import("crypto/gimli.zig"); _ = @import("crypto/hmac.zig"); _ = @import("crypto/md5.zig"); _ = @import("crypto/poly1305.zig"); |
