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