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-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;
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