defaultOptions top-level constant

Map<String, dynamic> const defaultOptions

Default options for key generation as of 8.3.2021

Implementation

const defaultOptions = <String, dynamic>{
  // symmetric cipher for private key encryption
  'cipher': 'aes-256-ctr',

  // initialization vector size in bytes
  'ivBytes': '16',

  // private key size in bytes
  'keyBytes': '32',

  // kdf parameters
  'kdfParams': {'dkLen': 32, 'n': 262144, 'r': 8, 'p': 1},

  //network
  // ignore: unnecessary_const
  'network': Network(false, 0x01, 'toplnet')
};