verifyPSS static method

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

Implementation

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

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