Uses of Class
org.gudy.bouncycastle.asn1.ASN1Set
-
Packages that use ASN1Set Package Description org.gudy.bouncycastle.asn1 A library for parsing and writing ASN.1 objects.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 ASN1Set in org.gudy.bouncycastle.asn1
Subclasses of ASN1Set in org.gudy.bouncycastle.asn1 Modifier and Type Class Description class
BERSet
class
DERConstructedSet
Deprecated.use DERSetclass
DERSet
A DER encoded set objectMethods in org.gudy.bouncycastle.asn1 that return ASN1Set Modifier and Type Method Description static ASN1Set
ASN1Set. getInstance(java.lang.Object obj)
return an ASN1Set from the given object.static ASN1Set
ASN1Set. getInstance(ASN1TaggedObject obj, boolean explicit)
Return an ASN1 set from a tagged object. -
Uses of ASN1Set in org.gudy.bouncycastle.asn1.pkcs
Fields in org.gudy.bouncycastle.asn1.pkcs declared as ASN1Set Modifier and Type Field Description (package private) ASN1Set
CertificationRequestInfo. attributes
private ASN1Set
PrivateKeyInfo. attributes
private ASN1Set
Attribute. attrValues
private ASN1Set
SignerInfo. authenticatedAttributes
(package private) ASN1Set
SafeBag. bagAttributes
private ASN1Set
SignedData. certificates
private ASN1Set
SignedData. crls
private ASN1Set
SignedData. digestAlgorithms
private ASN1Set
SignedData. signerInfos
private ASN1Set
SignerInfo. unauthenticatedAttributes
Methods in org.gudy.bouncycastle.asn1.pkcs that return ASN1Set Modifier and Type Method Description ASN1Set
CertificationRequestInfo. getAttributes()
ASN1Set
PrivateKeyInfo. getAttributes()
ASN1Set
Attribute. getAttrValues()
ASN1Set
SignerInfo. getAuthenticatedAttributes()
ASN1Set
SafeBag. getBagAttributes()
ASN1Set
SignedData. getCertificates()
ASN1Set
SignedData. getCRLs()
ASN1Set
SignedData. getDigestAlgorithms()
ASN1Set
SignedData. getSignerInfos()
ASN1Set
SignerInfo. getUnauthenticatedAttributes()
Constructors in org.gudy.bouncycastle.asn1.pkcs with parameters of type ASN1Set Constructor Description Attribute(DERObjectIdentifier attrType, ASN1Set attrValues)
CertificationRequestInfo(X509Name subject, SubjectPublicKeyInfo pkInfo, ASN1Set attributes)
PrivateKeyInfo(AlgorithmIdentifier algId, DERObject privateKey, ASN1Set attributes)
SafeBag(DERObjectIdentifier oid, DERObject obj, ASN1Set bagAttributes)
SignedData(DERInteger _version, ASN1Set _digestAlgorithms, ContentInfo _contentInfo, ASN1Set _certificates, ASN1Set _crls, ASN1Set _signerInfos)
SignerInfo(DERInteger version, IssuerAndSerialNumber issuerAndSerialNumber, AlgorithmIdentifier digAlgorithm, ASN1Set authenticatedAttributes, AlgorithmIdentifier digEncryptionAlgorithm, ASN1OctetString encryptedDigest, ASN1Set unauthenticatedAttributes)
-
Uses of ASN1Set in org.gudy.bouncycastle.asn1.x509
Fields in org.gudy.bouncycastle.asn1.x509 declared as ASN1Set Modifier and Type Field Description private ASN1Set
Attribute. attrValues
Methods in org.gudy.bouncycastle.asn1.x509 that return ASN1Set Modifier and Type Method Description ASN1Set
Attribute. getAttrValues()
Constructors in org.gudy.bouncycastle.asn1.x509 with parameters of type ASN1Set Constructor Description Attribute(DERObjectIdentifier attrType, ASN1Set attrValues)
-
Uses of ASN1Set in org.gudy.bouncycastle.jce
Constructors in org.gudy.bouncycastle.jce with parameters of type ASN1Set 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.
-