org.bouncycastle.tls.crypto.impl.jcajce.JcaDefaultTlsCredentialedSigner 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.crypto.impl.jcajce;
import java.security.PrivateKey;
import java.security.interfaces.DSAPrivateKey;
import java.security.interfaces.ECPrivateKey;
import java.security.interfaces.RSAPrivateKey;
import org.bouncycastle.tls.Certificate;
import org.bouncycastle.tls.DefaultTlsCredentialedSigner;
import org.bouncycastle.tls.SignatureAndHashAlgorithm;
import org.bouncycastle.tls.crypto.TlsCryptoParameters;
import org.bouncycastle.tls.crypto.TlsSigner;
/**
* Credentialed class for generating signatures based on the use of primitives from the JCA.
*/
public class JcaDefaultTlsCredentialedSigner
extends DefaultTlsCredentialedSigner
{
private static TlsSigner makeSigner(JcaTlsCrypto crypto, PrivateKey privateKey)
{
TlsSigner signer;
if (privateKey instanceof RSAPrivateKey || "RSA".equals(privateKey.getAlgorithm()))
{
signer = new JcaTlsRSASigner(crypto, privateKey);
}
else if (privateKey instanceof DSAPrivateKey || "DSA".equals(privateKey.getAlgorithm()))
{
signer = new JcaTlsDSASigner(crypto, privateKey);
}
else if (privateKey instanceof ECPrivateKey || "EC".equals(privateKey.getAlgorithm()))
{
signer = new JcaTlsECDSASigner(crypto, privateKey);
}
else
{
throw new IllegalArgumentException("'privateKey' type not supported: " + privateKey.getClass().getName());
}
return signer;
}
public JcaDefaultTlsCredentialedSigner(TlsCryptoParameters cryptoParams, JcaTlsCrypto crypto, PrivateKey privateKey, Certificate certificate, SignatureAndHashAlgorithm signatureAndHashAlgorithm)
{
super(cryptoParams, makeSigner(crypto, privateKey), certificate, signatureAndHashAlgorithm);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy