RE: how to generate Private for Blowfish, CAST and rc4

2006-02-17 Thread Lee Colclough
Hi, The Network Security with OpenSSL book suggests using the OpenSSL own pseudorandom number generator. RAND_bytes(key, iLength); Where key is a char* to be populated and iLength is the length required. Also look up seed_prng for seeding it. Is this what you wanted to know?

Re: how to generate Private for Blowfish, CAST and rc4

2006-02-17 Thread Kyle Hamilton
If you want a deterministic means, run a cryptographic hash of the passphrase to however many bits you need.-Kyle HOn 2/17/06, Lee Colclough [EMAIL PROTECTED] wrote: Hi, The Network Security with OpenSSL book suggests using the OpenSSL own pseudorandom number generator.

how to generate Private for Blowfish, CAST and rc4

2006-02-16 Thread danny ng
Hi, I am using the 0.9.7e version of the openssl and i am having trouble with generating the private key for Blowfish, CAST and rc4. Was wondering how do i actually go about doing it. I have search the internet for any command lines related to them was unable to find any. Hope there is someone