[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <52CFABC5.5030806@ladisch.de>
Date: Fri, 10 Jan 2014 09:13:57 +0100
From: Clemens Ladisch <clemens@...isch.de>
To: Rafael Aquini <aquini@...hat.com>, Theodore Ts'o <tytso@....edu>
CC: Arnd Bergmann <arnd@...db.de>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-kernel@...r.kernel.org, linux-crypto@...r.kernel.org,
Stephan Mueller <stephan.mueller@...ec.com>
Subject: Re: [RFC PATCH] char: random: stir the output pools differently when
the random_write lenght allows splitting the seed
Rafael Aquini wrote:
> This patch introduces changes to the random_write method so it can split the
> given seed and completely stir the output pools with different halves of it,
> when seed lenght allows us doing so.
>
> - ret = write_pool(&blocking_pool, buffer, count);
> + ret = write_pool(pool1, buffer, count1);
> if (ret)
> return ret;
> - ret = write_pool(&nonblocking_pool, buffer, count);
> + ret = write_pool(pool2, buffer + offset, count2);
Doesn't this assume that both halves of the buffer contain some
(uncredited) entropy? In other words, wouldn't this result in worse
randomness for pool2 if the second half of the buffer contains just zero
padding?
Regards,
Clemens
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists