decryptOAEPBytes static method
Implementation
static Future<Uint8List> decryptOAEPBytes(
Uint8List ciphertext, String label, Hash hash, String privateKey) async {
var request = DecryptOAEPBytesRequest()
..ciphertext = ciphertext
..label = label
..hash = hash
..privateKey = privateKey;
return await _bytesResponse("decryptOAEPBytes", request.writeToBuffer());
}