diff --git a/lib/std/crypto/hmac.zig b/lib/std/crypto/hmac.zig index 700904555d4498c79565cec52f219e4f059eb100..5f10b77591c733c5cdc034c372e1b8adac54bd2c 100644 --- a/lib/std/crypto/hmac.zig +++ b/lib/std/crypto/hmac.zig @@ -18,10 +18,6 @@ pub const sha2 = struct { pub const HmacSha512 = Hmac(crypto.hash.sha2.Sha512); }; -pub const blake2 = struct { - pub const HmacBlake2s256 = Hmac(crypto.hash.blake2.Blake2s256); -}; - pub fn Hmac(comptime Hash: type) type { return struct { const Self = @This();