diff options
author | friendica <info@friendica.com> | 2013-07-24 05:13:21 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-24 05:13:21 -0700 |
commit | 20ba6dd62e1b63db367c92d864cb890aa179b082 (patch) | |
tree | a656ba2334cab421c28e0bb5dc8f1988f7f3efd9 /include/crypto.php | |
parent | 9288c2e63637879cc2e431a23a94633b69d8e4a5 (diff) | |
download | volse-hubzilla-20ba6dd62e1b63db367c92d864cb890aa179b082.tar.gz volse-hubzilla-20ba6dd62e1b63db367c92d864cb890aa179b082.tar.bz2 volse-hubzilla-20ba6dd62e1b63db367c92d864cb890aa179b082.zip |
not quite so much crypto logging
Diffstat (limited to 'include/crypto.php')
-rw-r--r-- | include/crypto.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/crypto.php b/include/crypto.php index 9d36c24ec..b78c4d43a 100644 --- a/include/crypto.php +++ b/include/crypto.php @@ -217,7 +217,8 @@ function aes_encapsulate($data,$pubkey) { $iv = random_string(16,RANDOM_STRING_TEXT); $result['data'] = base64url_encode(AES256CBC_encrypt($data,$key,$iv),true); if(! openssl_public_encrypt($key,$k,$pubkey)) { - logger('aes_encapsulate: RSA failed. ' . print_r(debug_backtrace(),true)); + $x = debug_backtrace(); + logger('aes_encapsulate: RSA failed. ' . print_r($x[0],true)); } $result['key'] = base64url_encode($k,true); openssl_public_encrypt($iv,$i,$pubkey); |