From: "Jason A. Donenfeld" Subject: Re: [PATCH v3 3/3] random: use siphash24 instead of md5 for get_random_int/long Date: Thu, 15 Dec 2016 19:51:13 +0100 Message-ID: References: <20161214035927.30004-1-Jason@zx2c4.com> <20161214184605.24006-1-Jason@zx2c4.com> <20161214184605.24006-3-Jason@zx2c4.com> <063D6719AE5E284EB5DD2968C1650D6DB02401A1@AcuExch.aculab.com> Reply-To: kernel-hardening@lists.openwall.com Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: Netdev , "kernel-hardening@lists.openwall.com" , LKML , "linux-crypto@vger.kernel.org" , Jean-Philippe Aumasson , Ted Tso To: David Laight Return-path: List-Post: List-Help: List-Unsubscribe: List-Subscribe: In-Reply-To: <063D6719AE5E284EB5DD2968C1650D6DB02401A1@AcuExch.aculab.com> List-Id: linux-crypto.vger.kernel.org Hi David, On Thu, Dec 15, 2016 at 11:14 AM, David Laight wrote: > From: Behalf Of Jason A. Donenfeld >> Sent: 14 December 2016 18:46 > ... >> + ret = *chaining = siphash24((u8 *)&combined, offsetof(typeof(combined), end), > > If you make the first argument 'const void *' you won't need the cast > on every call. > > I'd also suggest making the key u64[2]. I'll do both. Thanks for the suggestion. Jason