encryptOAEPBytes static method
Implementation
static Future<Uint8List> encryptOAEPBytes(
Uint8List message, String label, Hash hash, String publicKey) async {
var request = EncryptOAEPBytesRequest()
..message = message
..label = label
..publicKey = publicKey
..hash = hash;
return await _bytesResponse("encryptOAEPBytes", request.writeToBuffer());
}