aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto.php
diff options
context:
space:
mode:
authorHaakon Meland Eriksen <haakon.eriksen@far.no>2016-03-02 06:06:39 +0100
committerHaakon Meland Eriksen <haakon.eriksen@far.no>2016-03-02 06:06:39 +0100
commit264abef81761a3ed0d27126dbc5a6e0a47fb8ec8 (patch)
tree883418e21b721217b28380f9313405373825650a /include/crypto.php
parente084a85e79af2c56f6e715fcf44a1be815ea5c45 (diff)
parenta0baa480e3968306c8ebc297a60f84b4d2ccf8c9 (diff)
downloadvolse-hubzilla-264abef81761a3ed0d27126dbc5a6e0a47fb8ec8.tar.gz
volse-hubzilla-264abef81761a3ed0d27126dbc5a6e0a47fb8ec8.tar.bz2
volse-hubzilla-264abef81761a3ed0d27126dbc5a6e0a47fb8ec8.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'include/crypto.php')
-rw-r--r--include/crypto.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto.php b/include/crypto.php
index 50ec2a3a6..94a6b4a58 100644
--- a/include/crypto.php
+++ b/include/crypto.php
@@ -20,7 +20,7 @@ function rsa_verify($data,$sig,$key,$alg = 'sha256') {
if(intval(OPENSSL_ALGO_SHA256) && $alg === 'sha256')
$alg = OPENSSL_ALGO_SHA256;
- $verify = openssl_verify($data,$sig,$key,$alg);
+ $verify = @openssl_verify($data,$sig,$key,$alg);
if(! $verify) {
logger('openssl_verify: ' . openssl_error_string(),LOGGER_NORMAL,LOG_ERR);