org.opencms.webdav
Class CmsMD5Encoder
java.lang.Object
org.opencms.webdav.CmsMD5Encoder
public final class CmsMD5Encoder
- extends Object
Encode an MD5 digest into a String.
The 128 bit MD5 hash is converted into a 32 character long String.
Each character of the String is the hexadecimal representation of 4 bits
of the digest.
- Since:
- 6.5.6
Method Summary |
String |
encode(byte[] binaryData)
Encodes the 128 bit (16 bytes) MD5 into a 32 character String. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CmsMD5Encoder
public CmsMD5Encoder()
encode
public String encode(byte[] binaryData)
- Encodes the 128 bit (16 bytes) MD5 into a 32 character String.
- Parameters:
binaryData
- array containing the digest
- Returns:
- encoded MD5, or null if encoding failed