CryptoConfiguration constructor

const CryptoConfiguration({
  1. EncryptionMode encryptionMode = EncryptionMode.CBC,
  2. bool encryptKey = true,
  3. bool useRandomInitializationVector = true,
})

Implementation

const CryptoConfiguration(
    {this.encryptionMode = EncryptionMode.CBC,
    this.encryptKey = true,
    // ignore: deprecated_member_use_from_same_package
    this.useRandomInitializationVector = true});