Package com.bld.crypto.aes.config.data
Class Aes
- java.lang.Object
-
- com.bld.crypto.aes.config.data.Aes
-
public class Aes extends Object
The Class Aes.
-
-
Constructor Summary
Constructors Constructor Description Aes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetKeyLength()Gets the key length.StringgetPassword()Gets the password.StringgetSalt()Gets the salt.voidsetKeyLength(Integer keyLength)Sets the key length.voidsetPassword(String password)Sets the password.voidsetSalt(String salt)Sets the salt.
-
-
-
Method Detail
-
getPassword
public String getPassword()
Gets the password.- Returns:
- the password
-
setPassword
public void setPassword(String password)
Sets the password.- Parameters:
password- the new password
-
getSalt
public String getSalt()
Gets the salt.- Returns:
- the salt
-
setSalt
public void setSalt(String salt)
Sets the salt.- Parameters:
salt- the new salt
-
getKeyLength
public Integer getKeyLength()
Gets the key length.- Returns:
- the key length
-
setKeyLength
public void setKeyLength(Integer keyLength)
Sets the key length.- Parameters:
keyLength- the new key length
-
-