From 7a01d396ee4bb38e6421a852dc3f891d856dfda8 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 2 Feb 2021 09:58:43 +0100 Subject: [PATCH] siphash: update the link to the SipHash paper --- lib/std/crypto/siphash.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/crypto/siphash.zig b/lib/std/crypto/siphash.zig index 0fde28f69e..a091b0644d 100644 --- a/lib/std/crypto/siphash.zig +++ b/lib/std/crypto/siphash.zig @@ -10,7 +10,7 @@ // - protection against against DoS attacks for hash tables and bloom filters // - authentication of short-lived messages in online protocols // -// https://131002.net/siphash/ +// https://www.aumasson.jp/siphash/siphash.pdf const std = @import("../std.zig"); const assert = std.debug.assert; const testing = std.testing;