public class Digest extends Object
Representation.getDigest()
Modifier and Type | Field and Description |
---|---|
static String |
ALGORITHM_HTTP_DIGEST
Digest algorithm for the HTTP DIGEST scheme.
|
static String |
ALGORITHM_MD2
Digest algorithm defined in RFC 1319.
|
static String |
ALGORITHM_MD5
Digest algorithm defined in RFC 1321.
|
static String |
ALGORITHM_NONE
No digest algorithm defined.
|
static String |
ALGORITHM_SHA_1
Digest algorithm defined in Secure Hash Standard, NIST FIPS 180-1.
|
static String |
ALGORITHM_SHA_256
NIST approved digest algorithm from SHA-2 family.
|
static String |
ALGORITHM_SHA_384
NIST approved digest algorithm from SHA-2 family.
|
static String |
ALGORITHM_SHA_512
NIST approved digest algorithm from SHA-2 family.
|
Constructor and Description |
---|
Digest(byte[] value)
Constructor using the MD5 algorithm by default.
|
Digest(String algorithm,
byte[] value)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getAlgorithm()
Returns the digest algorithm.
|
byte[] |
getValue()
Returns the digest value.
|
String |
toString() |
public static final String ALGORITHM_MD2
public static final String ALGORITHM_MD5
public static final String ALGORITHM_NONE
public static final String ALGORITHM_SHA_1
public static final String ALGORITHM_SHA_256
public static final String ALGORITHM_SHA_384
public static final String ALGORITHM_SHA_512
public static final String ALGORITHM_HTTP_DIGEST
public Digest(byte[] value)
value
- The digest value.public Digest(String algorithm, byte[] value)
algorithm
- The digest algorithm.value
- The digest value.public String getAlgorithm()
public byte[] getValue()
Copyright © 2005–2016. All rights reserved.