This class produces a hash value of the certificate name
in the OpenSSL/SSLeay way. It can be used to find the
filename of the certificate based on the certificate subject
DN.
Example: (iaik specific)
.
Name nm = (Name)cert.getSubjectDN();
byte [] raw = nm.getEncoded();
String hash = HashUtil.hash(raw);
.