clearPassword method

void clearPassword()

"Securely" clears the local password storage.

Implementation

void clearPassword() {
  if (pw == null) return;
  for (int i = 0; i < pw.length; i++) {
    pw[i] ^= random.nextInt(255);
  }
  pw = null;
}