Package org.bouncycastle.pkix.jcajce
Class JcaPKIXIdentity
- java.lang.Object
-
- org.bouncycastle.pkix.PKIXIdentity
-
- org.bouncycastle.pkix.jcajce.JcaPKIXIdentity
-
public class JcaPKIXIdentity extends PKIXIdentity
Holder class for public/private key based identity information.
-
-
Constructor Summary
Constructors Constructor Description JcaPKIXIdentity(java.security.PrivateKey privKey, java.security.cert.X509Certificate[] certs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.security.PrivateKey
getPrivateKey()
Return the private key for this identity.java.security.cert.X509Certificate
getX509Certificate()
Return the certificate associated with the private key.-
Methods inherited from class org.bouncycastle.pkix.PKIXIdentity
getCertificate, getPrivateKeyInfo, getRecipientId
-
-
-
-
Method Detail
-
getPrivateKey
public java.security.PrivateKey getPrivateKey()
Return the private key for this identity.- Returns:
- the identity's private key.
-
getX509Certificate
public java.security.cert.X509Certificate getX509Certificate()
Return the certificate associated with the private key.- Returns:
- the primary certificate.
-
-