remove debug output

This commit is contained in:
Björn Schießle 2013-02-19 17:10:32 +01:00
parent 109fee7673
commit fd629983fa
1 changed files with 1 additions and 1 deletions

View File

@ -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;