PHP-Security-Library icon indicating copy to clipboard operation
PHP-Security-Library copied to clipboard

PSL is a security library for PHP. It provides advanced random data generation, encryption utilities as well as certificate generation and signing.

Results 2 PHP-Security-Library issues
Sort by recently updated
recently updated
newest added

This is a really bad idea: ``` $cipherText->key; ``` The interface should be changed so that the key is never stored in the ciphertext... because it will lead naive users...

This is wrong. In the fallback random thing. ``` // Let's make it a byte. $random .= chr($source % 255); ``` It should be 256, otherwise the value 255 is...