init method
Init the cipher with its initialization params
. The type of
CipherParameters depends on the algorithm being used (see the
documentation of each implementation to find out more).
Use the argument forEncryption
to tell the cipher if you want to encrypt
or decrypt data.
Implementation
@override
void init(bool forEncryption, CipherParameters? params) {
this.forEncryption = forEncryption;
Uint8List key;
if (params != null) {
if (params is RC2Parameters) {
workingKey = generateWorkingKey(params.key, params.effectiveKeyBits);
key = params.key;
} else if (params is KeyParameter) {
key = params.key;
workingKey = generateWorkingKey(key, key.length * 8);
}
}
}