From: tedd on
Hi gang:

I'm trying to keep my questions simple.

Does the function "openssl_pkey_new" use 40, 56, 128, 256, or what
bit encryption?

Cheers,

tedd

--
-------
http://sperling.com/
From: Nathan Rixham on
tedd wrote:
> Hi gang:
>
> I'm trying to keep my questions simple.
>
> Does the function "openssl_pkey_new" use 40, 56, 128, 256, or what bit
> encryption?

Higher, and configurable, typically 512,1024,2048,4096

example:
$privkey = openssl_pkey_new( array('private_key_bits' => 2048 ) );

Best,

Nathan