Made message signing in Cryptography use SHA512 as the message content for... #1

Closed
netkas wants to merge 421 commits from master into dev
Showing only changes of commit f073b8d004 - Show all commits

View file

@ -229,6 +229,7 @@
*/
public static function verifySignature(string $message, string $signature, string $uuid): bool
{
// TODO: Complete this
$signingKey = self::getSigningKey($uuid);
if($signingKey === null)
{