enc method

String enc(
  1. String data
)

Encrypts data using the configured key and rounds.

Implementation

String enc(String data) => encrypt(data, key: _key, round: _round);