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 bctls-lts8on Show documentation
Show all versions of bctls-lts8on 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 LTS provider but may also be used with other providers providing cryptographic services.
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;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy