From 04c94f95d1a1c6a12f5412228a2bcdc00f5de3b2 Mon Sep 17 00:00:00 2001 From: shyouhei Date: Fri, 20 Jan 2017 06:01:23 +0000 Subject: switch SipHash from SipHash24 to SipHash13 variant SipHash13 is secure enough to be used in hash-tables, and SipHash's author confirms that. Rust already considered switch to SipHash13: https://github.com/rust-lang/rust/issues/29754#issue-116174313 Jean-Philippe Aumasson confirmation: https://github.com/rust-lang/rust/issues/29754#issuecomment-156073946 Merged pull request: https://github.com/rust-lang/rust/pull/33940 From: Sokolov Yura aka funny_falcon Date: Thu, 8 Dec 2016 20:31:29 +0300 Signed-off-by: Urabe, Shyouhei Fixes: [Feature #13017] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- siphash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'siphash.h') diff --git a/siphash.h b/siphash.h index 3f3988408b..2e7553f208 100644 --- a/siphash.h +++ b/siphash.h @@ -43,6 +43,6 @@ int sip_hash_digest_integer(sip_hash *h, const uint8_t *data, size_t data_len, u void sip_hash_free(sip_hash *h); void sip_hash_dump(sip_hash *h); -uint64_t sip_hash24(const uint8_t key[16], const uint8_t *data, size_t len); +uint64_t sip_hash13(const uint8_t key[16], const uint8_t *data, size_t len); #endif -- cgit v1.2.3