| author | |
| committer | |
| log | 5d014d4b3775783b2f4dc991b827c298369d066a |
| tree | 629aceac083096e615a4462872895445e2520ce5 |
| parent | c7b79284efc037b0e310a17bc32148e877124ddc |
2 files changed, 2 insertions(+), 0 deletions(-)
std/crypto/hmac.zig+1| ... | ... | @@ -6,6 +6,7 @@ const mem = std.mem; |
| 6 | 6 | pub const HmacMd5 = Hmac(crypto.Md5); |
| 7 | 7 | pub const HmacSha1 = Hmac(crypto.Sha1); |
| 8 | 8 | pub const HmacSha256 = Hmac(crypto.Sha256); |
| 9 | pub const HmacBlake2s256 = Hmac(crypto.Blake2s256); | |
| 9 | 10 | |
| 10 | 11 | pub fn Hmac(comptime Hash: type) type { |
| 11 | 12 | return struct.{ |
std/crypto/index.zig+1| ... | ... | @@ -23,6 +23,7 @@ const hmac = @import("hmac.zig"); |
| 23 | 23 | pub const HmacMd5 = hmac.HmacMd5; |
| 24 | 24 | pub const HmacSha1 = hmac.HmacSha1; |
| 25 | 25 | pub const HmacSha256 = hmac.HmacSha256; |
| 26 | pub const HmacBlake2s256 = hmac.HmacBlake2s256; | |
| 26 | 27 | |
| 27 | 28 | const import_chaCha20 = @import("chacha20.zig"); |
| 28 | 29 | pub const chaCha20IETF = import_chaCha20.chaCha20IETF; |