clearSalt method

void clearSalt()

Implementation

void clearSalt() {
  if (null != _salt) {
    _salt!.fillRange(0, _salt!.length, 0);
  }
}