HomeSort by relevance Sort by last modified time
    Searched refs:DERSet (Results 1 - 11 of 11) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERFactory.java 6 static final DERSet EMPTY_SET = new DERSet();
13 static DERSet createSet(ASN1EncodableVector v)
15 return v.size() < 1 ? EMPTY_SET : new DERSet(v);
18 static DERSet createSet(ASN1EncodableVector v, boolean needsSorting)
20 return v.size() < 1 ? EMPTY_SET : new DERSet(v, needsSorting);
DERSet.java 10 public class DERSet
16 public DERSet()
23 public DERSet(
32 public DERSet(
41 public DERSet(
55 DERSet(
DERSetParser.java 24 return new DERSet(_parser.readVector(), false);
BERSet.java 7 extends DERSet
ASN1Set.java 68 ASN1Set set = new DERSet(obj.getObject());
95 return new DERSet(v, false);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
RDN.java 9 import org.bouncycastle.asn1.DERSet;
48 this.values = new DERSet(new DERSequence(v));
53 this.values = new DERSet(attrTAndV);
61 this.values = new DERSet(aAndVs);
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Attribute.java 8 import org.bouncycastle.asn1.DERSet;
39 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
53 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPath.java 32 import org.bouncycastle.asn1.DERSet;
291 new DERSet(),
293 new DERSet(v),
295 new DERSet());
JDKPKCS12KeyStore.java 55 import org.bouncycastle.asn1.DERSet;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 30 import org.bouncycastle.asn1.DERSet;
166 else if (obj instanceof DERSet)
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java 18 import org.bouncycastle.asn1.DERSet;
852 vec.add(new DERSet(sVec));
861 vec.add(new DERSet(sVec));
    [all...]

Completed in 374 milliseconds