ZF-8805: Zend_Filter_Encrypt_Openssl only allows to set public key through the constructor
Description
The documentation implies that the following is possible:
$filter = new Zend_Filter_Encrypt(array(
'adapter' => 'openssl',
'private' => '/path/to/mykey/private.pem'
));
The problem is that all arguments handed to the adapter, will be used as public key.
Comments
Posted by Thomas Weidner (thomas) on 2010-01-14T12:16:16.000+0000
Fixed with r20288