Home
last modified time | relevance | path

Searched refs:ASN1Set (Results 1 – 25 of 41) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
DSignedData.java10 import org.bouncycastle.asn1.ASN1Set;
23 private ASN1Set digestAlgorithms;
25 private ASN1Set certificates;
26 private ASN1Set crls;
27 private ASN1Set signerInfos;
46 ASN1Set _digestAlgorithms, in SignedData()
48 ASN1Set _certificates, in SignedData()
49 ASN1Set _crls, in SignedData()
50 ASN1Set _signerInfos) in SignedData()
66 digestAlgorithms = ((ASN1Set)e.nextElement()); in SignedData()
[all …]
DCertificationRequestInfo.java8 import org.bouncycastle.asn1.ASN1Set;
39 ASN1Set attributes = null;
72 ASN1Set attributes) in CertificationRequestInfo()
90 ASN1Set attributes) in CertificationRequestInfo()
120 attributes = ASN1Set.getInstance(tagobj, false); in CertificationRequestInfo()
144 public ASN1Set getAttributes() in getAttributes()
DSafeBag.java9 import org.bouncycastle.asn1.ASN1Set;
19 private ASN1Set bagAttributes;
33 ASN1Set bagAttributes) in SafeBag()
63 this.bagAttributes = (ASN1Set)seq.getObjectAt(2); in SafeBag()
77 public ASN1Set getBagAttributes() in getBagAttributes()
DPrivateKeyInfo.java15 import org.bouncycastle.asn1.ASN1Set;
27 private ASN1Set attributes;
62 ASN1Set attributes) in PrivateKeyInfo()
90 attributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false); in PrivateKeyInfo()
127 public ASN1Set getAttributes() in getAttributes()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DSignedData.java11 import org.bouncycastle.asn1.ASN1Set;
67 private ASN1Set digestAlgorithms;
69 private ASN1Set certificates;
70 private ASN1Set crls;
71 private ASN1Set signerInfos;
105 ASN1Set digestAlgorithms, in SignedData()
107 ASN1Set certificates, in SignedData()
108 ASN1Set crls, in SignedData()
109 ASN1Set signerInfos) in SignedData()
124 ASN1Set certs, in calculateVersion()
[all …]
DSignerInfo.java11 import org.bouncycastle.asn1.ASN1Set;
81 private ASN1Set authenticatedAttributes;
84 private ASN1Set unauthenticatedAttributes;
127 ASN1Set authenticatedAttributes, in SignerInfo()
130 ASN1Set unauthenticatedAttributes) in SignerInfo()
177 this.authenticatedAttributes = ASN1Set.getInstance(authenticatedAttributes); in SignerInfo()
180 this.unauthenticatedAttributes = ASN1Set.getInstance(unauthenticatedAttributes); in SignerInfo()
199 authenticatedAttributes = ASN1Set.getInstance((ASN1TaggedObject)obj, false); in SignerInfo()
213 … unauthenticatedAttributes = ASN1Set.getInstance((ASN1TaggedObject)e.nextElement(), false); in SignerInfo()
231 public ASN1Set getAuthenticatedAttributes() in getAuthenticatedAttributes()
[all …]
DAttribute.java9 import org.bouncycastle.asn1.ASN1Set;
37 private ASN1Set attrValues;
72 attrValues = (ASN1Set)seq.getObjectAt(1); in Attribute()
77 ASN1Set attrValues) in Attribute()
88 public ASN1Set getAttrValues() in getAttrValues()
DAttributes.java6 import org.bouncycastle.asn1.ASN1Set;
27 private ASN1Set attributes;
29 private Attributes(ASN1Set set) in Attributes()
60 return new Attributes(ASN1Set.getInstance(obj)); in getInstance()
DAttributeTable.java10 import org.bouncycastle.asn1.ASN1Set;
38 ASN1Set s) in AttributeTable()
57 this(ASN1Set.getInstance(attrs.toASN1Primitive())); in AttributeTable()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1Set.java97 public abstract class ASN1Set class
111 public static ASN1Set getInstance( in getInstance()
114 if (obj == null || obj instanceof ASN1Set) in getInstance()
116 return (ASN1Set)obj; in getInstance()
120 return ASN1Set.getInstance(((ASN1SetParser)obj).toASN1Primitive()); in getInstance()
126 return ASN1Set.getInstance(ASN1Primitive.fromByteArray((byte[])obj)); in getInstance()
137 if (primitive instanceof ASN1Set) in getInstance()
139 return (ASN1Set)primitive; in getInstance()
163 public static ASN1Set getInstance( in getInstance()
174 return (ASN1Set)obj.getObject(); in getInstance()
[all …]
DASN1TaggedObject.java87 if (prim instanceof ASN1Set) in ASN1TaggedObject()
89 ASN1Set s = null; in ASN1TaggedObject()
200 return ASN1Set.getInstance(this, isExplicit).parser(); in getObjectParser()
DDERFactory.java6 static final ASN1Set EMPTY_SET = new DERSet();
13 static ASN1Set createSet(ASN1EncodableVector v) in createSet()
DBERTaggedObject.java124 else if (obj instanceof ASN1Set) in encode()
126 e = ((ASN1Set)obj).getObjects(); in encode()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DAttribute.java9 import org.bouncycastle.asn1.ASN1Set;
16 private ASN1Set attrValues;
49 attrValues = ASN1Set.getInstance(seq.getObjectAt(1)); in Attribute()
54 ASN1Set attrValues) in Attribute()
70 public ASN1Set getAttrValues() in getAttrValues()
DDistributionPointName.java7 import org.bouncycastle.asn1.ASN1Set;
98 this.name = ASN1Set.getInstance(obj, false); in DistributionPointName()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DRDN.java8 import org.bouncycastle.asn1.ASN1Set;
18 private ASN1Set values;
20 private RDN(ASN1Set values) in RDN()
33 return new RDN(ASN1Set.getInstance(obj)); in getInstance()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DCMSSignedData.java22 import org.bouncycastle.asn1.ASN1Set;
243 ASN1Set s = signedData.getSignerInfos(); in getSignerInfos()
510 ASN1Set digests = new DERSet(digestAlgs); in replaceSigners()
511 ASN1Set signers = new DERSet(vec); in replaceSigners()
565 ASN1Set certSet = null; in replaceCertificatesAndCRLs()
566 ASN1Set crlSet = null; in replaceCertificatesAndCRLs()
581 ASN1Set set = CMSUtils.createBerSetFromList(certs); in replaceCertificatesAndCRLs()
591 ASN1Set set = CMSUtils.createBerSetFromList(CMSUtils.getCRLsFromStore(revocations)); in replaceCertificatesAndCRLs()
DCMSSignedDataGenerator.java13 import org.bouncycastle.asn1.ASN1Set;
190 ASN1Set certificates = null; in generate()
197 ASN1Set certrevlist = null; in generate()
DSignerInfoGenerator.java11 import org.bouncycastle.asn1.ASN1Set;
184 ASN1Set signedAttr = null; in generate()
222 ASN1Set unsignedAttr = null; in generate()
247 private ASN1Set getAttributeSet( in getAttributeSet()
DCMSSignedHelper.java13 import org.bouncycastle.asn1.ASN1Set;
166 Store getCertificates(ASN1Set certSet) in getCertificates()
188 Store getAttributeCertificates(ASN1Set certSet) in getAttributeCertificates()
210 Store getCRLs(ASN1Set crlSet) in getCRLs()
DSignerInformation.java16 import org.bouncycastle.asn1.ASN1Set;
56 protected final ASN1Set signedAttributeSet;
57 protected final ASN1Set unsignedAttributeSet;
289 ASN1Set values = counterSignatureAttribute.getAttrValues(); in getCounterSignatures()
640 ASN1Set attrValues = t.getAttrValues(); in getSingleValuedSignedAttribute()
689 ASN1Set unsignedAttr = null; in replaceUnsignedAttributes()
DCMSUtils.java17 import org.bouncycastle.asn1.ASN1Set;
222 static ASN1Set createBerSetFromList(List derObjects) in createBerSetFromList()
234 static ASN1Set createDerSetFromList(List derObjects) in createDerSetFromList()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DX509Attribute.java8 import org.bouncycastle.asn1.ASN1Set;
65 ASN1Set s = attr.getAttrValues(); in getValues()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
DPKCS10CertificationRequest.java30 import org.bouncycastle.asn1.ASN1Set;
260 ASN1Set attributes, in PKCS10CertificationRequest()
288 ASN1Set attributes, in PKCS10CertificationRequest()
303 ASN1Set attributes, in PKCS10CertificationRequest()
319 ASN1Set attributes, in PKCS10CertificationRequest()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
DCertificateFactory.java21 import org.bouncycastle.asn1.ASN1Set;
45 private ASN1Set sData = null;
49 private ASN1Set sCrlData = null;

12