getCiphertext method

Uint8List getCiphertext(
  1. MessageKeys messageKeys,
  2. Uint8List plaintext
)

Implementation

Uint8List getCiphertext(MessageKeys messageKeys, Uint8List plaintext) =>
    aesCbcEncrypt(messageKeys.getCipherKey(), messageKeys.getIv(), plaintext);