From owner-svn-src-head@freebsd.org Tue Jul 14 01:57:00 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B541799B033 for ; Tue, 14 Jul 2015 01:57:00 +0000 (UTC) (envelope-from schmiedgen@gmx.net) Received: from mout.gmx.net (mout.gmx.net [212.227.17.22]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 40C0E12EF for ; Tue, 14 Jul 2015 01:56:59 +0000 (UTC) (envelope-from schmiedgen@gmx.net) Received: from [192.168.40.2] ([188.102.177.56]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0MRB8F-1ZPRM42ulz-00UbZ5 for ; Tue, 14 Jul 2015 03:56:51 +0200 To: svn-src-head@freebsd.org References: <201507121814.t6CIEdkN045519@repo.freebsd.org> Subject: Re: svn commit: r285422 - in head: share/man/man4 sys/conf sys/dev/random sys/net sys/netgraph From: Michael Schmiedgen Message-ID: <55A46C62.9000001@gmx.net> Date: Tue, 14 Jul 2015 03:56:50 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.0.1 MIME-Version: 1.0 In-Reply-To: <201507121814.t6CIEdkN045519@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:0EJgRel63Gr8afz8VC+ox6O6JFQW5fbwo+NpOK5B7mbHOBL7lH7 50qckwO7QjRUWn6j0VnK2wL+4lkGBd+QJuFPsULQSEfEjXnb9Rov32dAs3oZkhgpjpcivUH LsE7x5JFvLhf3+Ulr7LqxFepA9eUV/UkfqV/kZ/dQh7++N2Cc9sOwBPbCmWzY/8XnuUVaB3 vlTccVWeaAcX3M0HAnquw== X-UI-Out-Filterresults: notjunk:1;V01:K0:DurU4ID1eQU=:f7ry15cO7oBaj9YBzvoYRF ViKNXhm4lDBiz8BQnI1ZbCEa3HLu8N2GoLjxbcBCK8Cv9ApgA/HO7erdsGDWLHE6Ym38yERrf 5X0wLvvDDYzKo+pHyY4MHJH86M3KqNylqS5ZKj8fPPFcilRgBXLtne5RugaRRM6GIqOcjm6hp x6dJceaxMnxJGQarlW5wpLyqSg+tYV9JiQp/0CHDOeaxNn0unjZ1Ds2qCBNmIDUKCnxLIah6I TIJf+I2inPLVoAiiMlKM4pF7X6QtgBIaPh6HqTQvyD/jae4FtxscPFFX4m1tgJpBKMlpF9iDQ R2ZE9HoTogsSx2H49IJkWZsQMfPJfSvmAp39o4iqz6wlxVWv3MvhBWcYUuuzBcw7oSH1EUeP9 YpAcQyuBYrMW5TRWIxv50vfcoXa6YlAl0HzYy7IjzYq6XrhiJwkNW0HjxTnVFx/NDM9i1V5Jh vMEaT29q19n0sbLrKfJo0xMcKpJtpiq6kTzA1bn4LGxSAXkNpDel0bM4stOj4XsBuvCeW3j9C OxH7J4yDjiUhZueYbH+DPP9mRGiWF6B9vxIRDyMnAafk/vKy5I5velAEP8/Cel1Mqyg5dCZAz /PmWhnJ93rO7eKxf2owphZRN3U0zBjuxdffJcWJLHh/vCYq1NRCfsdk3VblgYJmUwI7VH0m/E fb2Yw949SV93uvVPcU/g5GqoFtdC1AZeMlKqjyb1U91O+tRi3qy9NvEPNnwTpskMALVg= X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jul 2015 01:57:00 -0000 >- Remove all mention of RANDOM_FORTUNA. If the system owner wants YARROW or DUMMY, they ask for it, otherwise they get FORTUNA. ... > # Random number generator > # Only ONE of the below two may be used; they are mutually exclusive. >+# If neither is present, then the Fortuna algorithm is used. > options RANDOM_YARROW # Yarrow CSPRNG (Default) >-#options RANDOM_FORTUNA # Fortuna CSPRNG > options RANDOM_DEBUG # Debugging messages I do not see two generators listed, as stated in the comment. Should the comment be updated, or another option RANDOM_DUMMY added? Michael