clean method
Cleans up resources used by the Galois/Counter Mode (GCM) instance.
This method clears sensitive data and resources, such as the subkey used for encryption and decryption.
Implementation
@override
GCM clean() {
BinaryOps.zero(_subkey);
return this;
}