verifyPSSBytes static method

Future<bool> verifyPSSBytes(
  1. Uint8List signature,
  2. Uint8List message,
  3. Hash hash,
  4. SaltLength saltLength,
  5. String publicKey,
)

Implementation

static Future<bool> verifyPSSBytes(Uint8List signature, Uint8List message,
    Hash hash, SaltLength saltLength, String publicKey) async {
  var request = VerifyPSSBytesRequest()
    ..signature = signature
    ..message = message
    ..hash = hash
    ..saltLength = saltLength
    ..publicKey = publicKey;

  return await _boolResponse("verifyPSSBytes", request.writeToBuffer());
}