init method

void init(
  1. bool forEncryption,
  2. List<int> key
)
override

Implementation

void init(bool forEncryption, List<int> key) {
  this.key = key;
  this.forEncryption = forEncryption;
}