From: "Jason A. Donenfeld" Subject: Re: [PATCH v2 1/4] siphash: add cryptographically secure hashtable function Date: Wed, 14 Dec 2016 13:46:05 +0100 Message-ID: References: <20161214035927.30004-1-Jason@zx2c4.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: Netdev , kernel-hardening@lists.openwall.com, Jean-Philippe Aumasson , LKML , Linux Crypto Mailing List , "Daniel J . Bernstein" , Linus Torvalds , Eric Biggers To: David Laight Return-path: Received: from frisell.zx2c4.com ([192.95.5.64]:55236 "EHLO frisell.zx2c4.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753130AbcLNMqV (ORCPT ); Wed, 14 Dec 2016 07:46:21 -0500 In-Reply-To: <20161214035927.30004-1-Jason@zx2c4.com> Sender: linux-crypto-owner@vger.kernel.org List-ID: Hi David, On Wed, Dec 14, 2016 at 10:56 AM, David Laight wrote: > ... >> +u64 siphash24(const u8 *data, size_t len, const u8 key[SIPHASH24_KEY_LEN]) > ... >> + u64 k0 = get_unaligned_le64(key); >> + u64 k1 = get_unaligned_le64(key + sizeof(u64)); > ... >> + m = get_unaligned_le64(data); > > All these unaligned accesses are going to get expensive on architectures > like sparc64. Yes, the unaligned accesses aren't pretty. Since in pretty much all use cases thus far, the data can easily be made aligned, perhaps it makes sense to create siphash24() and siphash24_unaligned(). Any thoughts on doing something like that? Jason