remove debug output
This commit is contained in:
parent
109fee7673
commit
fd629983fa
|
@ -451,7 +451,7 @@ class Crypt {
|
|||
*/
|
||||
public static function keyEncrypt( $plainContent, $publicKey ) {
|
||||
|
||||
if (openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey )) error_log("feinifeine"); else error_log("ups");
|
||||
openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey );
|
||||
|
||||
return $encryptedContent;
|
||||
|
||||
|
|
Loading…
Reference in New Issue