org.bouncycastle.openpgp.operator.jcajce.JcaPGPKeyPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpg-jdk14 Show documentation
Show all versions of bcpg-jdk14 Show documentation
The Bouncy Castle Java API for handling the OpenPGP protocol. This jar contains the OpenPGP API for JDK 1.4. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.
package org.bouncycastle.openpgp.operator.jcajce;
import java.security.KeyPair;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.util.Date;
import org.bouncycastle.openpgp.PGPAlgorithmParameters;
import org.bouncycastle.openpgp.PGPException;
import org.bouncycastle.openpgp.PGPKeyPair;
import org.bouncycastle.openpgp.PGPPrivateKey;
import org.bouncycastle.openpgp.PGPPublicKey;
public class JcaPGPKeyPair
extends PGPKeyPair
{
private static PGPPublicKey getPublicKey(int algorithm, PublicKey pubKey, Date date)
throws PGPException
{
return new JcaPGPKeyConverter().getPGPPublicKey(algorithm, pubKey, date);
}
private static PGPPublicKey getPublicKey(int algorithm, PGPAlgorithmParameters algorithmParameters, PublicKey pubKey, Date date)
throws PGPException
{
return new JcaPGPKeyConverter().getPGPPublicKey(algorithm, algorithmParameters, pubKey, date);
}
private static PGPPrivateKey getPrivateKey(PGPPublicKey pub, PrivateKey privKey)
throws PGPException
{
return new JcaPGPKeyConverter().getPGPPrivateKey(pub, privKey);
}
public JcaPGPKeyPair(int algorithm, KeyPair keyPair, Date date)
throws PGPException
{
this.pub = getPublicKey(algorithm, keyPair.getPublic(), date);
this.priv = getPrivateKey(this.pub, keyPair.getPrivate());
}
public JcaPGPKeyPair(int algorithm, PGPAlgorithmParameters parameters, KeyPair keyPair, Date date)
throws PGPException
{
this.pub = getPublicKey(algorithm, parameters, keyPair.getPublic(), date);
this.priv = getPrivateKey(this.pub, keyPair.getPrivate());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy