IDSCryptoConfiguration constructor
IDSCryptoConfiguration({})
Creates a new IDSCryptoConfiguration instance with customizable parameters.
password
is required. Default values:
salt
='salt'
iterations
=10000
keyLength
=32
(for AES-256)ivLength
=16
Implementation
IDSCryptoConfiguration({
required this.password,
this.salt = 'salt',
this.iterations = 10000,
this.keyLength = 32,
this.ivLength = 16,
});