org.bouncycastle.tls.TlsCredentialedDecryptor 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
The newest version!
package org.bouncycastle.tls;
import java.io.IOException;
import org.bouncycastle.tls.crypto.TlsCryptoParameters;
import org.bouncycastle.tls.crypto.TlsSecret;
/**
* Base interface for a class that decrypts TLS secrets.
*/
public interface TlsCredentialedDecryptor
extends TlsCredentials
{
/**
* Decrypt the passed in cipher text using the parameters available.
*
* @param cryptoParams the parameters to use for the decryption.
* @param ciphertext the cipher text containing the secret.
* @return a TLS secret.
* @throws IOException on a parsing or decryption error.
*/
TlsSecret decrypt(TlsCryptoParameters cryptoParams, byte[] ciphertext) throws IOException;
}