encrypt method

  1. @override
List<int> encrypt(
  1. List<int> data
)
override

Defines encryption and decryption operations for ciphers. Encrypts the given data.

Implementation

@override
List<int> encrypt(List<int> data) {
  throw UnimplementedError('ECC encryption not yet implemented');
}