|
Posted by Bruce Stephens on March 7, 2007, 5:23 pm
If you were Registered and logged in, you could reply and use other advanced thread options
[...]
> If so, what would be the command line arguments to produce a
> SSL_RSA_EXPORT_WITH_RC4_40_MD5 CSR?? That is a 40 bit encryption
> with 512 bit keys.
You can generate a new RSA 512 bit key using "-newkey rsa:512".
(Alternatively use "openssl genrsa 512".) You can specify an MD5 hash
using the -md5 flag to req.
I'm not sure where you want RC4_40 to fit, though: CSR's aren't
encrypted. (Not that I know of, anyway.) (I don't see an easy way to
encrypt the private key with RC4_40---not that that would be a good
idea.)
|