Class DigestPasswordAlgorithmSpec
- java.lang.Object
-
- org.wildfly.security.password.spec.DigestPasswordAlgorithmSpec
-
- All Implemented Interfaces:
Serializable
,AlgorithmParameterSpec
public final class DigestPasswordAlgorithmSpec extends Object implements AlgorithmParameterSpec, Serializable
AAlgorithmParameterSpec
for a password represented by digesting it with a username and realm as defined by RFC2617 and RFC2831.- Author:
- Darran Lofthouse
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private String
realm
private static long
serialVersionUID
private String
username
-
Constructor Summary
Constructors Constructor Description DigestPasswordAlgorithmSpec(String username, String realm)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
String
getRealm()
String
getUsername()
int
hashCode()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
username
private final String username
-
realm
private final String realm
-
-