Uses of Class
org.gudy.bouncycastle.asn1.x509.X509Name
-
Packages that use X509Name Package Description org.gudy.bouncycastle.asn1.pkcs Support classes useful for encoding and supporting the various RSA PKCS documents.org.gudy.bouncycastle.asn1.x509 Support classes useful for encoding and processing X.509 certificates.org.gudy.bouncycastle.jce -
-
Uses of X509Name in org.gudy.bouncycastle.asn1.pkcs
Fields in org.gudy.bouncycastle.asn1.pkcs declared as X509Name Modifier and Type Field Description (package private) X509Name
IssuerAndSerialNumber. name
(package private) X509Name
CertificationRequestInfo. subject
Methods in org.gudy.bouncycastle.asn1.pkcs that return X509Name Modifier and Type Method Description X509Name
IssuerAndSerialNumber. getName()
X509Name
CertificationRequestInfo. getSubject()
Constructors in org.gudy.bouncycastle.asn1.pkcs with parameters of type X509Name Constructor Description CertificationRequestInfo(X509Name subject, SubjectPublicKeyInfo pkInfo, ASN1Set attributes)
IssuerAndSerialNumber(X509Name name, java.math.BigInteger certSerialNumber)
IssuerAndSerialNumber(X509Name name, DERInteger certSerialNumber)
-
Uses of X509Name in org.gudy.bouncycastle.asn1.x509
Fields in org.gudy.bouncycastle.asn1.x509 declared as X509Name Modifier and Type Field Description (package private) X509Name
TBSCertificateStructure. issuer
(package private) X509Name
TBSCertList. issuer
(package private) X509Name
V1TBSCertificateGenerator. issuer
(package private) X509Name
V2TBSCertListGenerator. issuer
(package private) X509Name
V3TBSCertificateGenerator. issuer
(package private) X509Name
TBSCertificateStructure. subject
(package private) X509Name
V1TBSCertificateGenerator. subject
(package private) X509Name
V3TBSCertificateGenerator. subject
Methods in org.gudy.bouncycastle.asn1.x509 that return X509Name Modifier and Type Method Description static X509Name
X509Name. getInstance(java.lang.Object obj)
static X509Name
X509Name. getInstance(ASN1TaggedObject obj, boolean explicit)
Return a X509Name based on the passed in tagged object.X509Name
CertificateList. getIssuer()
X509Name
TBSCertificateStructure. getIssuer()
X509Name
TBSCertList. getIssuer()
X509Name
X509CertificateStructure. getIssuer()
X509Name
TBSCertificateStructure. getSubject()
X509Name
X509CertificateStructure. getSubject()
Methods in org.gudy.bouncycastle.asn1.x509 with parameters of type X509Name Modifier and Type Method Description void
V1TBSCertificateGenerator. setIssuer(X509Name issuer)
void
V2TBSCertListGenerator. setIssuer(X509Name issuer)
void
V3TBSCertificateGenerator. setIssuer(X509Name issuer)
void
V1TBSCertificateGenerator. setSubject(X509Name subject)
void
V3TBSCertificateGenerator. setSubject(X509Name subject)
Constructors in org.gudy.bouncycastle.asn1.x509 with parameters of type X509Name Constructor Description GeneralName(X509Name dirName)
-
Uses of X509Name in org.gudy.bouncycastle.jce
Subclasses of X509Name in org.gudy.bouncycastle.jce Modifier and Type Class Description class
X509Principal
Methods in org.gudy.bouncycastle.jce with parameters of type X509Name Modifier and Type Method Description void
X509V1CertificateGenerator. setIssuerDN(X509Name issuer)
Set the issuer distinguished name - the issuer is the entity whose private key is used to sign the certificate.void
X509V2CRLGenerator. setIssuerDN(X509Name issuer)
Set the issuer distinguished name - the issuer is the entity whose private key is used to sign the certificate.void
X509V3CertificateGenerator. setIssuerDN(X509Name issuer)
Set the issuer distinguished name - the issuer is the entity whose private key is used to sign the certificate.void
X509V1CertificateGenerator. setSubjectDN(X509Name subject)
Set the subject distinguished name.void
X509V3CertificateGenerator. setSubjectDN(X509Name subject)
Set the subject distinguished name.Constructors in org.gudy.bouncycastle.jce with parameters of type X509Name Constructor Description PKCS10CertificationRequest(java.lang.String signatureAlgorithm, X509Name subject, java.security.PublicKey key, ASN1Set attributes, java.security.PrivateKey signingKey)
create a PKCS10 certfication request using the BC provider.PKCS10CertificationRequest(java.lang.String signatureAlgorithm, X509Name subject, java.security.PublicKey key, ASN1Set attributes, java.security.PrivateKey signingKey, java.lang.String provider)
create a PKCS10 certfication request using the named provider.X509Principal(X509Name name)
Constructor from an X509Name object.
-