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 impersonator Show documentation
Show all versions of impersonator Show documentation
Spoof TLS/JA3/JA4 and HTTP/2 fingerprints in Java
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 TlsHash cloneHash()
{
try
{
return new JcaTlsHash((MessageDigest)digest.clone());
}
catch (CloneNotSupportedException e)
{
throw new UnsupportedOperationException("unable to clone digest");
}
}
public void reset()
{
digest.reset();
}
}