Re: Patch: cprng_fast performance - please review.

Thomas Klausner <[email protected]> Fri, 18 Apr 2014 20:33:20 +0200
Newsgroups gmane.os.netbsd.devel.crypto,gmane.os.netbsd.devel.kernel
Message-ID <[email protected]>
On Fri, Apr 18, 2014 at 01:39:18PM -0400, Thor Lancelot Simon wrote:
> How do you count to 9K?  I see:
> 
> 	2K for p
> 	2K for q
> 	1280 bytes for w

Are you talking about this w?
+       uint32_t w[1280], *p = state->p, *q = state->q;

This looks like 1280x4 bytes to me.
 Thomas