aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-03-30 16:33:23 -0700
committerredmatrix <git@macgirvin.com>2016-03-30 16:33:23 -0700
commit6a6dbec0335c43137e4dc5e84b5b188edc57ba10 (patch)
tree4a329ee9050be11da2ffc4a75b5d3002f35d3ecd /include/crypto.php
parent08461c7049ee5c9788e815537b540b9987a5eace (diff)
downloadvolse-hubzilla-6a6dbec0335c43137e4dc5e84b5b188edc57ba10.tar.gz
volse-hubzilla-6a6dbec0335c43137e4dc5e84b5b188edc57ba10.tar.bz2
volse-hubzilla-6a6dbec0335c43137e4dc5e84b5b188edc57ba10.zip
issue #319 - NOTE: this does not fix the issue, it only reports it and continues. We need to examine any logger statements that contain 'stack:' as a result of reporting this issue and find and fix the original problem - which is that set_pconfig is being called without a valid $uid. I'm worried that since we will now continue on without throwing a PHP error that nobody will ever notice or find the problem that is causing this.
Diffstat (limited to 'include/crypto.php')
-rw-r--r--include/crypto.php11
1 files changed, 1 insertions, 10 deletions
diff --git a/include/crypto.php b/include/crypto.php
index d82ee5114..d636c6848 100644
--- a/include/crypto.php
+++ b/include/crypto.php
@@ -25,16 +25,7 @@ function rsa_verify($data,$sig,$key,$alg = 'sha256') {
if(! $verify) {
while($msg = openssl_error_string())
logger('openssl_verify: ' . $msg,LOGGER_NORMAL,LOG_ERR);
- logger('openssl_verify: key: ' . $key, LOGGER_DEBUG, LOG_ERR);
- // provide a backtrace so that we can debug key issues
- if(version_compare(PHP_VERSION, '5.4.0') >= 0) {
- $stack = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
- if($stack) {
- foreach($stack as $s) {
- logger('stack: ' . basename($s['file']) . ':' . $s['line'] . ':' . $s['function'] . '()',LOGGER_DEBUG,LOG_ERR);
- }
- }
- }
+ btlogger('openssl_verify: key: ' . $key, LOGGER_DEBUG, LOG_ERR);
}
return $verify;