encrypt method

Future<Uint8List> encrypt(
  1. Uint8List data
)

Encrypt data using the public key.

Implementation

Future<Uint8List> encrypt(Uint8List data) {
  throw UnimplementedError('encrypt() has not been implemented.');
}