erase method
void
erase()
Securely overwrites all sensitive data with zeros.
Call this method after successfully sending the challenge to the user to prevent the ephemeral server public key and salt from lingering in memory longer than necessary.
Implementation
void erase() {
ephemeralServerPublicKey.overwriteWithZeros();
verifierKeySalt.overwriteWithZeros();
}