verifyPSS static method
Future<bool>
verifyPSS(
- String signature,
- String message,
- Hash hash,
- SaltLength saltLength,
- 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());
}