verifySHA512Signature method

bool verifySHA512Signature(
  1. Uint8List message,
  2. Uint8List signature
)

Verify the signature of a SHA512-hashed message signed with the associated PrivateKey

Implementation

bool verifySHA512Signature(Uint8List message, Uint8List signature) =>
    throw UnimplementedError(
        'verifySHA512Signature(Uint8List message, Uint8List signature) is not implemented yet!');