org.bouncycastle.tls.TlsRSAUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctls-jdk15on Show documentation
Show all versions of bctls-jdk15on Show documentation
The Bouncy Castle Java APIs for TLS and DTLS, including a provider for the JSSE.
package org.bouncycastle.tls;
import java.io.IOException;
import java.io.OutputStream;
import org.bouncycastle.tls.crypto.TlsCertificate;
import org.bouncycastle.tls.crypto.TlsSecret;
/**
* RSA Utility methods.
*/
public abstract class TlsRSAUtils
{
private TlsRSAUtils()
{
}
/*
* Generate a pre_master_secret and send it encrypted to the server
*/
public static TlsSecret generateEncryptedPreMasterSecret(TlsContext context, TlsCertificate certificate,
OutputStream output) throws IOException
{
TlsSecret preMasterSecret = context.getCrypto().generateRSAPreMasterSecret(context.getClientVersion());
byte[] encryptedPreMasterSecret = preMasterSecret.encrypt(certificate);
TlsUtils.writeOpaque16(encryptedPreMasterSecret, output);
return preMasterSecret;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy