aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/crypto.php')
-rw-r--r--include/crypto.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/crypto.php b/include/crypto.php
index 339d5fe17..33cdc10c0 100644
--- a/include/crypto.php
+++ b/include/crypto.php
@@ -4,7 +4,7 @@ function rsa_sign($data,$key,$alg = 'sha256') {
if(! $key)
return 'no key';
$sig = '';
- if(defined(OPENSSL_ALGO_SHA256) && $alg === 'sha256')
+ if(intval(OPENSSL_ALGO_SHA256) && $alg === 'sha256')
$alg = OPENSSL_ALGO_SHA256;
openssl_sign($data,$sig,$key,$alg);
return $sig;
@@ -15,7 +15,7 @@ function rsa_verify($data,$sig,$key,$alg = 'sha256') {
if(! $key)
return false;
- if(defined(OPENSSL_ALGO_SHA256) && $alg === 'sha256')
+ if(intval(OPENSSL_ALGO_SHA256) && $alg === 'sha256')
$alg = OPENSSL_ALGO_SHA256;
$verify = openssl_verify($data,$sig,$key,$alg);
return $verify;