encrypt abstract method

Uint8List encrypt(
  1. Uint8List data, {
  2. SSC? ssc,
})

Encrypts data to be used in Secure Messaging. data must be padded (if needed) before calling this function. ssc is used as IV for encryption.

Implementation

Uint8List encrypt(final Uint8List data, {SSC? ssc});