org.bouncycastle.tls.crypto.impl.jcajce.JcaTlsHash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-fips Show documentation
Show all versions of bctls-fips Show documentation
The Bouncy Castle Java APIs for the TLS, including a JSSE provider. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.
package org.bouncycastle.tls.crypto.impl.jcajce;
import java.security.MessageDigest;
import org.bouncycastle.tls.crypto.TlsHash;
/**
* Wrapper class for providing support methods for a TlsHash based on the JCA MessageDigest class.
*/
public class JcaTlsHash
implements TlsHash
{
private final MessageDigest digest;
public JcaTlsHash(MessageDigest digest)
{
this.digest = digest;
}
public void update(byte[] data, int offSet, int length)
{
digest.update(data, offSet, length);
}
public byte[] calculateHash()
{
return digest.digest();
}
public Object clone()
{
try
{
return new JcaTlsHash((MessageDigest)digest.clone());
}
catch (CloneNotSupportedException e)
{
throw new UnsupportedOperationException("unable to clone digest");
}
}
public void reset()
{
digest.reset();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy