Re: [PHP-DEV] openssl module for php From: Wez Furlong (wez <email protected>)
Date: 05/04/01

On 2001-05-04 17:59:03, "Stig Venaas" <venaas <email protected>> wrote:
> followed up on that. It would be good if you and Sascha Kettler could
> agree on how the API should be

How about:

openssl_key_encrypt(
  string data, // to encrypt
  string &crypted, // encrypted result
  mixed key, // key to use
  bool public, // true if you want public key, false for private key
  [int padding] // optional padding
);

and:

openssl_key_decrypt(
  string data, // to decrypt
  string &decrypted, // decrypted result
  mixed key, // key to use
  bool public, // true if you want public key, false for private key
  [int padding] // optional padding
);

Where key can specify the key using the extended syntax added in 4.0.6 (see
php manual online for more info).

This rolls 4 functions into two.
The relevant cipher is encoded in the key.

Thoughts? Comments? Suggestions?

--Wez.

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>