Class RawPassword
- java.lang.Object
-
- org.wildfly.security.password.interfaces.RawPassword
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Key
,Password
- Direct Known Subclasses:
RawBCryptPassword
,RawBSDUnixDESCryptPassword
,RawClearPassword
,RawDigestPassword
,RawMaskedPassword
,RawOneTimePassword
,RawSaltedSimpleDigestPassword
,RawScramDigestPassword
,RawSimpleDigestPassword
,RawSunUnixMD5CryptPassword
,RawUnixDESCryptPassword
,RawUnixMD5CryptPassword
,RawUnixSHACryptPassword
abstract class RawPassword extends Object implements Password
-
-
Field Summary
Fields Modifier and Type Field Description private String
algorithm
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description RawPassword(String algorithm)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract RawPassword
clone()
Creates and returns a copy of thisPassword
.abstract boolean
equals(Object obj)
String
getAlgorithm()
byte[]
getEncoded()
String
getFormat()
abstract int
hashCode()
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.wildfly.security.password.Password
castAndApply, castAndApply, castAs, castAs, getParameterSpec, impliesParameters
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
algorithm
private final String algorithm
-
-
Constructor Detail
-
RawPassword
RawPassword(String algorithm)
-
-
Method Detail
-
getAlgorithm
public String getAlgorithm()
- Specified by:
getAlgorithm
in interfaceKey
-
getEncoded
public byte[] getEncoded()
- Specified by:
getEncoded
in interfaceKey
-
clone
public abstract RawPassword clone()
Description copied from interface:Password
Creates and returns a copy of thisPassword
.
-
-