mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Added warning about an empty key
This commit is contained in:
parent
a4679cffdc
commit
3237dab1a4
1 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,9 @@ class Crypto
|
|||
*/
|
||||
public static function rsaSign($data, $key, $alg = 'sha256')
|
||||
{
|
||||
if (empty($key)) {
|
||||
logger::warning('Empty key parameter', ['callstack' => System::callstack()]);
|
||||
}
|
||||
openssl_sign($data, $sig, $key, (($alg == 'sha1') ? OPENSSL_ALGO_SHA1 : $alg));
|
||||
return $sig;
|
||||
}
|
||||
|
@ -37,6 +40,9 @@ class Crypto
|
|||
*/
|
||||
public static function rsaVerify($data, $sig, $key, $alg = 'sha256')
|
||||
{
|
||||
if (empty($key)) {
|
||||
logger::warning('Empty key parameter', ['callstack' => System::callstack()]);
|
||||
}
|
||||
return openssl_verify($data, $sig, $key, (($alg == 'sha1') ? OPENSSL_ALGO_SHA1 : $alg));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue