Re: /dev/random question

2007-09-17 Thread cpghost
On Mon, 17 Sep 2007 15:50:33 +0200 (CEST) Wojciech Puchar <[EMAIL PROTECTED]> wrote: > > same Yarrow pseudo-random sequence. If enough of the random data > > survives at the end of the dvd it may allow an attack against the > > PRNG. > > > > As things stand, Yarrow is secure, but it might not be a

Re: /dev/random question

2007-09-17 Thread Wojciech Puchar
same Yarrow pseudo-random sequence. If enough of the random data survives at the end of the dvd it may allow an attack against the PRNG. As things stand, Yarrow is secure, but it might not be a few years from now. always humans make most of security problems, not programs. if you need more s

Re: /dev/random question

2007-09-17 Thread Wojciech Puchar
Not high-handed. Logical. The difference between /dev/random and /dev/urandom was that /dev/random could block IO if it didn't have enough entropy in systems where /dev/random is separate simply abusing it by cat /dev/random >/dev/null make all other programs using it very very slow. as unix i

Re: /dev/random question

2007-09-17 Thread RW
On Mon, 17 Sep 2007 02:20:17 -0700 "Ted Mittelstaedt" <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] Behalf Of RW > > Sent: Sunday, September 16, 2007 1:56 PM > > To:

Re: /dev/random question

2007-09-17 Thread RW
On Mon, 17 Sep 2007 03:10:30 -0700 "Ted Mittelstaedt" <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] Behalf Of RW > > Sent: Sunday, September 16, 2007 7:24 PM > > To:

RE: /dev/random question

2007-09-17 Thread Ted Mittelstaedt
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of RW > Sent: Sunday, September 16, 2007 7:24 PM > To: freebsd-questions@freebsd.org > Subject: Re: /dev/random question > > > On Sun, 16 Sep 2007 23:51:56 +0200 > Mel <[

RE: /dev/random question

2007-09-17 Thread Ted Mittelstaedt
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of RW > Sent: Sunday, September 16, 2007 1:56 PM > To: freebsd-questions@freebsd.org > Subject: Re: /dev/random question > > > That's a poor analogy because they ha

Re: /dev/random question

2007-09-16 Thread RW
On Sun, 16 Sep 2007 23:51:56 +0200 Mel <[EMAIL PROTECTED]> wrote: > On Sunday 16 September 2007 22:55:50 RW wrote: > > On Sun, 16 Sep 2007 15:21:38 +0200 > An applicatation using /dev/random doesn't see the difference. It was > necessary at the time, because systems couldn't produce enough > ent

Re: /dev/random question

2007-09-16 Thread Mel
On Sunday 16 September 2007 22:55:50 RW wrote: > On Sun, 16 Sep 2007 15:21:38 +0200 > > Mel <[EMAIL PROTECTED]> wrote: > > People > > travelling the random road, will simply account for the possibility a > > traffic light comes up, which never does. > > That's a poor analogy because they haven't

Re: /dev/random question

2007-09-16 Thread RW
On Sun, 16 Sep 2007 15:21:38 +0200 Mel <[EMAIL PROTECTED]> wrote: > On Sunday 16 September 2007 03:01:26 RW wrote: > > > Essentially what has happened is that /dev/random has been > > abandoned in favour of a better /dev/urandom, and that seems to be > > a bit high-handed to me. > > Not high-han

Re: /dev/random question

2007-09-16 Thread Mel
On Sunday 16 September 2007 03:01:26 RW wrote: > Essentially what has happened is that /dev/random has been abandoned in > favour of a better /dev/urandom, and that seems to be a bit high-handed > to me. Not high-handed. Logical. The difference between /dev/random and /dev/urandom was that /dev/

Re: /dev/random question

2007-09-15 Thread RW
On Sat, 15 Sep 2007 00:44:10 -0700 "Ted Mittelstaedt" <[EMAIL PROTECTED]> wrote: > Since FreeBSD tries to be close to perfect ;-) it uses a better > random driver that can produce random numbers as fast as you want > them. The symlink is there only as a crutch for older UNIX code > that was writte

RE: /dev/random question

2007-09-15 Thread Ted Mittelstaedt
th > Sent: Thursday, September 13, 2007 8:37 AM > To: Per olof Ljungmark > Cc: freebsd-questions@freebsd.org > Subject: Re: /dev/random question > > > On Thu, Sep 13, 2007 at 04:56:26PM +0200, Per olof Ljungmark wrote: > > Hi, > > > > Could someone on t

Re: /dev/random question

2007-09-13 Thread Roland Smith
On Thu, Sep 13, 2007 at 10:57:57PM +0200, Per olof Ljungmark wrote: > Roland Smith wrote: >> On Thu, Sep 13, 2007 at 05:31:55PM +0100, RW wrote: >>> On Thu, 13 Sep 2007 17:36:30 +0200 >>> Roland Smith <[EMAIL PROTECTED]> wrote: >>> On Thu, Sep 13, 2007 at 04:56:26PM +0200, Per olof Ljungmark

Re: /dev/random question

2007-09-13 Thread Chuck Swiger
On Sep 13, 2007, at 1:57 PM, Per olof Ljungmark wrote: On the website it says that the original yarrow algorithm is no longer supported. It seems to have been replaced by the fortuna algorithm. I can't see from the source if /usr/src/sys/dev/random/yarrow.* use the original yarrow algorithm,

Re: /dev/random question

2007-09-13 Thread Per olof Ljungmark
Roland Smith wrote: On Thu, Sep 13, 2007 at 05:31:55PM +0100, RW wrote: On Thu, 13 Sep 2007 17:36:30 +0200 Roland Smith <[EMAIL PROTECTED]> wrote: On Thu, Sep 13, 2007 at 04:56:26PM +0200, Per olof Ljungmark wrote: Hi, Could someone on the list point me to a document that explains the funct

Re: /dev/random question

2007-09-13 Thread Roland Smith
On Thu, Sep 13, 2007 at 05:31:55PM +0100, RW wrote: > On Thu, 13 Sep 2007 17:36:30 +0200 > Roland Smith <[EMAIL PROTECTED]> wrote: > > > On Thu, Sep 13, 2007 at 04:56:26PM +0200, Per olof Ljungmark wrote: > > > Hi, > > > > > > Could someone on the list point me to a document that explains the >

Re: /dev/random question

2007-09-13 Thread RW
On Thu, 13 Sep 2007 17:36:30 +0200 Roland Smith <[EMAIL PROTECTED]> wrote: > On Thu, Sep 13, 2007 at 04:56:26PM +0200, Per olof Ljungmark wrote: > > Hi, > > > > Could someone on the list point me to a document that explains the > > functionality of /dev/random in FreeBSD in a little more depth t

Re: /dev/random question

2007-09-13 Thread Roland Smith
On Thu, Sep 13, 2007 at 04:56:26PM +0200, Per olof Ljungmark wrote: > Hi, > > Could someone on the list point me to a document that explains the > functionality of /dev/random in FreeBSD in a little more depth than the man > page? In other OS's I've looked at random and urandom are different, he