* [parisc-linux] HP-UX random number generator?
@ 2000-05-29 7:49 Peter A. Peterson II
2000-05-29 10:27 ` Sandy Harris
0 siblings, 1 reply; 10+ messages in thread
From: Peter A. Peterson II @ 2000-05-29 7:49 UTC (permalink / raw)
To: parisc-linux
I'm awaiting the day when I can fool around with Linux on my E-45, but
in the meantime, I'm trying to use it's tape drive to back up my
traditional Linux boxen via piping a tarball through ssh. However, ssh
needs a random generator (like /dev/urandom/) and I don't know what an
HP-UX equivalent might be, or how to go about installing one.
Any ideas?
pedro
--
-----------------------------------------------
"She's laughin in her sleeve, boys;
I can feel it in my bones." -- Tom Waits
-----------------------------------------------
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-29 7:49 [parisc-linux] HP-UX random number generator? Peter A. Peterson II
@ 2000-05-29 10:27 ` Sandy Harris
2000-05-29 15:33 ` Peter A. Peterson II
0 siblings, 1 reply; 10+ messages in thread
From: Sandy Harris @ 2000-05-29 10:27 UTC (permalink / raw)
To: Peter A. Peterson II; +Cc: parisc-linux
"Peter A. Peterson II" wrote:
>
> I'm awaiting the day when I can fool around with Linux on my E-45, but
> in the meantime, I'm trying to use it's tape drive to back up my
> traditional Linux boxen via piping a tarball through ssh. However, ssh
> needs a random generator (like /dev/urandom/) and I don't know what an
> HP-UX equivalent might be, or how to go about installing one.
>
Since you want to use it for crypto, this is a fairly difficult
problem. The numbers don't just need to have a nice distribution;
they have to be highly unpredictable, even to the cleverest, most
persistent and best-equipped opponent you might encounter.
The standard reference is RFC 1750.
A page with quite a lot of discussion of Linux /dev/random is at:
http://www.openpgp.net/random/index.html
There's a bunch more in Linux kernel mailing list archives.
Bruce Schneier and a few others have done quite a bit of research on
weaknesses of random number generators and designed a generator called
Yarrow. Source (Windows only last I looked) is freely available from
counterpane.com.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-29 10:27 ` Sandy Harris
@ 2000-05-29 15:33 ` Peter A. Peterson II
2000-05-29 16:17 ` phi
2000-05-29 16:55 ` Andrew Shugg
0 siblings, 2 replies; 10+ messages in thread
From: Peter A. Peterson II @ 2000-05-29 15:33 UTC (permalink / raw)
To: Sandy Harris; +Cc: Peter A. Peterson II, parisc-linux
Quoting Sandy Harris:
> "Peter A. Peterson II" wrote:
> Since you want to use it for crypto, this is a fairly difficult
> problem. The numbers don't just need to have a nice distribution;
> they have to be highly unpredictable, even to the cleverest, most
> persistent and best-equipped opponent you might encounter.
This is quite true... but for now, I'd settle on making ssh work,
since there is nothing of great value on the HP box, I'm just looking
for a way to kludge ssh into working.
>
> The standard reference is RFC 1750.
>
> A page with quite a lot of discussion of Linux /dev/random is at:
> http://www.openpgp.net/random/index.html
> There's a bunch more in Linux kernel mailing list archives.
>
> Bruce Schneier and a few others have done quite a bit of research on
> weaknesses of random number generators and designed a generator called
> Yarrow. Source (Windows only last I looked) is freely available from
> counterpane.com.
I will look into this -- thanks.
pedro
--
-----------------------------------------------
"She's laughin in her sleeve, boys;
I can feel it in my bones." -- Tom Waits
-----------------------------------------------
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-29 15:33 ` Peter A. Peterson II
@ 2000-05-29 16:17 ` phi
2000-05-29 16:55 ` Andrew Shugg
1 sibling, 0 replies; 10+ messages in thread
From: phi @ 2000-05-29 16:17 UTC (permalink / raw)
To: Peter A. Peterson II; +Cc: Sandy Harris, parisc-linux
"Peter A. Peterson II" wrote:
>
> This is quite true... but for now, I'd settle on making ssh work,
> since there is nothing of great value on the HP box, I'm just looking
> for a way to kludge ssh into working.
>
I downloaded ssh-1.2.27 a mounth ago or so on my HP-UX box, and used it
to connect to my web provider (a linux machine), and it ran like a
champ.
So go grab it, nothing to kludge, compile/link/run.
Phi
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-29 15:33 ` Peter A. Peterson II
2000-05-29 16:17 ` phi
@ 2000-05-29 16:55 ` Andrew Shugg
2000-05-29 18:23 ` Peter A. Peterson II
1 sibling, 1 reply; 10+ messages in thread
From: Andrew Shugg @ 2000-05-29 16:55 UTC (permalink / raw)
To: parisc-linux
Peter A. Peterson II said:
> This is quite true... but for now, I'd settle on making ssh work,
> since there is nothing of great value on the HP box, I'm just looking
> for a way to kludge ssh into working.
I know that on Solaris a /dev/urandom device is provided by the SKI packages.
There may be an equivalent under the HPUX environment but I am not sure, I am
not very far up the HPUX guru ladder.
You might like to consider using OpenSSH if you don't have any joy with ssh.
OpenSSH can be compiled[1] without a /dev/*random device by using egd[2], the
Entropy Gathering Daemon. OpenSSH also requires installation of zlib and
openssl though (which is just a bit more effort, but oh well). I've not used
egd so can't comment on it, but it's probably worth a go.
Or you could just fall back on rsh. =)
Andrew.
[1] http://www.openssh.com/portable.html
[2] http://www.lothar.com/tech/crypto/
--
Andrew Shugg <andrew@neep.com.au> http://www.neep.com.au/
"Just remember Basil, there's always someone worse off than yourself."
"Oh, really? I'd like to meet him ... I could do with a good laugh."
[ Sybil and Basil Fawlty, "Fawlty Towers" ]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-29 16:55 ` Andrew Shugg
@ 2000-05-29 18:23 ` Peter A. Peterson II
2000-05-30 17:22 ` Barrie Spence
0 siblings, 1 reply; 10+ messages in thread
From: Peter A. Peterson II @ 2000-05-29 18:23 UTC (permalink / raw)
To: Andrew Shugg; +Cc: parisc-linux
Quoting Andrew Shugg:
> You might like to consider using OpenSSH if you don't have any joy with ssh.
>
> OpenSSH can be compiled[1] without a /dev/*random device by using egd[2], the
> Entropy Gathering Daemon. OpenSSH also requires installation of zlib and
> openssl though (which is just a bit more effort, but oh well). I've not used
> egd so can't comment on it, but it's probably worth a go.
I was incorrectly specific. I installed openssh, zlib, and ssleay
already, and in the configure process for openssh it crapped out
looking for /dev/urandom and/or egd. I think i'll look into egd.
Thanks all.
pedro
--
-----------------------------------------------
"She's laughin in her sleeve, boys;
I can feel it in my bones." -- Tom Waits
-----------------------------------------------
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [parisc-linux] HP-UX random number generator?
@ 2000-05-30 0:38 FINK,MARTIN (HP-FtCollins,ex1)
2000-05-30 17:00 ` Peter A. Peterson II
0 siblings, 1 reply; 10+ messages in thread
From: FINK,MARTIN (HP-FtCollins,ex1) @ 2000-05-30 0:38 UTC (permalink / raw)
To: 'Peter A. Peterson II', parisc-linux
Peter -
Sorry to disappoint - /dev/random /dev/urandom are not available
on HP-UX. Lots of internal discussions inside HP on how/when
to make it available. No dates.
Martin
+=================================================================+
| Martin Fink | E-mail: martin_fink@hp.com |
| UNIX Systems Enablement Lab | Phone: 970-898-7076 |
| Hewlett-Packard Co. | FAX: 970-898-2838 |
| 3404 East Harmony Road | Mobile: 970-215-2451 |
| Ft. Collins, CO | Page: 9702152451@mobile.att.net |
| 80528, USA | Web: http://www.hp.com/ |
+=================================================================+
> -----Original Message-----
> From: Peter A. Peterson II [mailto:pedro@flynn.zork.net]
> Sent: Monday, May 29, 2000 1:50 AM
> To: parisc-linux@thepuffingroup.com
> Subject: [parisc-linux] HP-UX random number generator?
>
>
> I'm awaiting the day when I can fool around with Linux on my E-45, but
> in the meantime, I'm trying to use it's tape drive to back up my
> traditional Linux boxen via piping a tarball through ssh.
> However, ssh
> needs a random generator (like /dev/urandom/) and I don't
> know what an
> HP-UX equivalent might be, or how to go about installing one.
>
> Any ideas?
>
> pedro
>
> --
> -----------------------------------------------
> "She's laughin in her sleeve, boys;
> I can feel it in my bones." -- Tom Waits
> -----------------------------------------------
>
> --------------------------------------------------------------
> -------------
> To unsubscribe: send e-mail to
> parisc-linux-request@thepuffingroup.com with
> `unsubscribe' as the subject.
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-30 0:38 FINK,MARTIN (HP-FtCollins,ex1)
@ 2000-05-30 17:00 ` Peter A. Peterson II
2000-05-30 17:02 ` Peter A. Peterson II
0 siblings, 1 reply; 10+ messages in thread
From: Peter A. Peterson II @ 2000-05-30 17:00 UTC (permalink / raw)
To: FINK,MARTIN (HP-FtCollins,ex1)
Cc: 'Peter A. Peterson II', parisc-linux
Martin --
I got egd installed and working properly, but now openssh craps out
under 'make install' because of:
[gumby(~/openssh-1.2.2)] sudo make install
gcc -g -O2 -Wall -I/usr/local/ssl/include -D_HPUX_SOURCE
-DETCDIR=\"/usr/local/etc\" -DSc
In file included from config.h:336,
from includes.h:22,
from atomicio.c:26:
defines.h:93: parse error before `u_int64_t'
defines.h:93: warning: data definition has no type or storage class
*** Error exit code 1
Stop.
[gumby(~/openssh-1.2.2)]
This machine is running HP-UX 10. Would you know how to go about
adding the proper definitions to the types.h file?
(Or where I could read about how to do it?)
Thanks a lot,
Peter
Quoting FINK,MARTIN (HP-FtCollins,ex1):
> Peter -
>
> Sorry to disappoint - /dev/random /dev/urandom are not available
> on HP-UX. Lots of internal discussions inside HP on how/when
> to make it available. No dates.
>
> Martin
>
> >
> > I'm awaiting the day when I can fool around with Linux on my E-45, but
> > in the meantime, I'm trying to use it's tape drive to back up my
> > traditional Linux boxen via piping a tarball through ssh.
> > However, ssh
> > needs a random generator (like /dev/urandom/) and I don't
> > know what an
> > HP-UX equivalent might be, or how to go about installing one.
> >
> > Any ideas?
> >
> > pedro
--
-----------------------------------------------
"She's laughin in her sleeve, boys;
I can feel it in my bones." -- Tom Waits
-----------------------------------------------
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-30 17:00 ` Peter A. Peterson II
@ 2000-05-30 17:02 ` Peter A. Peterson II
0 siblings, 0 replies; 10+ messages in thread
From: Peter A. Peterson II @ 2000-05-30 17:02 UTC (permalink / raw)
To: parisc-linux
Guh. Sorry all.
-pedro
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [parisc-linux] HP-UX random number generator?
2000-05-29 18:23 ` Peter A. Peterson II
@ 2000-05-30 17:22 ` Barrie Spence
0 siblings, 0 replies; 10+ messages in thread
From: Barrie Spence @ 2000-05-30 17:22 UTC (permalink / raw)
To: pedro; +Cc: parisc-linux
"Peter A. Peterson II" <pedro@flynn.zork.net> wrote:
> Quoting Andrew Shugg:
> > You might like to consider using OpenSSH if you don't have any joy with ssh.
> >
> > OpenSSH can be compiled[1] without a /dev/*random device by using egd[2], the
> > Entropy Gathering Daemon. OpenSSH also requires installation of zlib and
> > openssl though (which is just a bit more effort, but oh well). I've not used
> > egd so can't comment on it, but it's probably worth a go.
>
> I was incorrectly specific. I installed openssh, zlib, and ssleay
> already, and in the configure process for openssh it crapped out
> looking for /dev/urandom and/or egd. I think i'll look into egd.
AFIAK, the more recent versions of openssh aren't supposed to need
/dev/urandom (or egd) when used with openssl-0.9.5.
Barrie
--
Barrie Spence Sanity Clause? There is no Sanity Clause
Home: b.spence@ieee.org Telephone +44 1506 442304
Play: barrie_spence@agilent.com
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2000-05-30 17:22 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-05-29 7:49 [parisc-linux] HP-UX random number generator? Peter A. Peterson II
2000-05-29 10:27 ` Sandy Harris
2000-05-29 15:33 ` Peter A. Peterson II
2000-05-29 16:17 ` phi
2000-05-29 16:55 ` Andrew Shugg
2000-05-29 18:23 ` Peter A. Peterson II
2000-05-30 17:22 ` Barrie Spence
-- strict thread matches above, loose matches on Subject: below --
2000-05-30 0:38 FINK,MARTIN (HP-FtCollins,ex1)
2000-05-30 17:00 ` Peter A. Peterson II
2000-05-30 17:02 ` Peter A. Peterson II
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.