-
public interface PasswordableInterface that can be implemented from classes that want to encrypt or decrypt with a password
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidresetPassword()Resets the passwordvoidsetPassword(char[] password)Sets the given passwordvoidsetPassword(java.lang.String password)Sets the given password
-
-
-
Method Detail
-
setPassword
void setPassword(java.lang.String password)
Sets the given password- Parameters:
password- the password to set
-
setPassword
void setPassword(char[] password)
Sets the given password- Parameters:
password- the password to set
-
resetPassword
void resetPassword()
Resets the password
-
-