aesEncrypt method

Uint8List aesEncrypt(
  1. Uint8List data
)

Encrypts binary data data with AES algorithm.

Returns Uint8List object containing encrypted data.

Implementation

Uint8List aesEncrypt(Uint8List data) => _aes.aesEncrypt(data);