DetachedCipherResult constructor

const DetachedCipherResult({
  1. required Uint8List cipherText,
  2. required Uint8List mac,
})

Default constructor.

Implementation

const factory DetachedCipherResult({
  /// The encrypted data.
  required Uint8List cipherText,

  /// The message authentication code of the data.
  required Uint8List mac,
}) = _DetachedCipherResult;