Package org.apache.cassandra.utils
Class MD5Digest
java.lang.Object
org.apache.cassandra.utils.MD5Digest
The result of the computation of an MD5 digest.
A MD5 is really just a byte[] but arrays are a no go as map keys. We could
wrap it in a ByteBuffer but:
1. MD5Digest is a more explicit name than ByteBuffer to represent a md5.
2. Using our own class allows to use our FastByteComparison for equals.