diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-06-19 19:01:28 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2019-06-19 19:01:28 -0400 |
| commit | 04c25efe112e374facaf1bc8b58bbdb6999a39e3 (patch) | |
| tree | 66a70b185ad8e44a69c8be27dd7dbc23425b040c /std/crypto.zig | |
| parent | 4ffab5b85f03f63a7e724698482f8497cacc7212 (diff) | |
| parent | 381c6a38b145665a22440f7aa816f0ddd9b70ee5 (diff) | |
| download | zig-04c25efe112e374facaf1bc8b58bbdb6999a39e3.tar.gz zig-04c25efe112e374facaf1bc8b58bbdb6999a39e3.zip | |
Merge remote-tracking branch 'origin/master' into copy-elision-3
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"); |
