This class implements the Secure Hash Algorithm SHA-384 developed by
the National Institute of Standards and Technology along with the
National Security Agency.
It implements java.security.MessageDigestSpi, and can be used
through Java Cryptography Architecture (JCA), as a pluggable
MessageDigest implementation.
version: 1.6 10/10/06 author: Valerie Peng
Computes the final hash and returns the final value as a
byte[48] array. The object is reset to be ready for further
use, as specified in the JavaSecurity MessageDigest
specification.
engineDigest
protected int engineDigest(byte[] hashvalue, int offset, int len) throws DigestException(Code)
Computes the final hash and returns the final value as a
byte[48] array. The object is reset to be ready for further
use, as specified in the JavaSecurity MessageDigest
specification.
Parameters: hashvalue - buffer to hold the digest Parameters: offset - offset for storing the digest Parameters: len - length of the buffer length of the digest in bytes