HomeSort by relevance Sort by last modified time
    Searched refs:DERInteger (Results 26 - 50 of 58) sorted by null

12 3

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
Pfx.java 9 import org.bouncycastle.asn1.DERInteger;
25 BigInteger version = ((DERInteger)seq.getObjectAt(0)).getValue();
61 v.add(new DERInteger(3));
CertificationRequestInfo.java 7 import org.bouncycastle.asn1.DERInteger;
36 DERInteger version = new DERInteger(0);
89 version = (DERInteger)seq.getObjectAt(0);
110 public DERInteger getVersion()
SignedData.java 10 import org.bouncycastle.asn1.DERInteger;
21 private DERInteger version;
44 DERInteger _version,
64 version = (DERInteger)e.nextElement();
99 public DERInteger getVersion()
EncryptedData.java 10 import org.bouncycastle.asn1.DERInteger;
59 int version = ((DERInteger)seq.getObjectAt(0)).getValue().intValue();
109 v.add(new DERInteger(0));
MacData.java 9 import org.bouncycastle.asn1.DERInteger;
48 this.iterationCount = ((DERInteger)seq.getObjectAt(2)).getValue();
101 v.add(new DERInteger(iterationCount));
PrivateKeyInfo.java 14 import org.bouncycastle.asn1.DERInteger;
72 BigInteger version = ((DERInteger)e.nextElement()).getValue();
133 v.add(new DERInteger(0));
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERExternal.java 13 private DERInteger indirectReference;
29 if (enc instanceof DERInteger)
31 indirectReference = (DERInteger) enc;
73 public DERExternal(DERObjectIdentifier directReference, DERInteger indirectReference, ASN1Object dataValueDescriptor, DERTaggedObject externalData)
87 public DERExternal(DERObjectIdentifier directReference, DERInteger indirectReference, ASN1Object dataValueDescriptor, int encoding, DERObject externalData)
225 public DERInteger getIndirectReference()
279 private void setIndirectReference(DERInteger indirectReference)
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
X9Curve.java 10 import org.bouncycastle.asn1.DERInteger;
52 BigInteger p = ((DERInteger)fieldID.getParameters()).getValue();
63 int m = ((DERInteger)parameters.getObjectAt(0)).getValue().
74 k1 = ((DERInteger)parameters.getObjectAt(2)).getValue().
82 k1 = ((DERInteger)pentanomial.getObjectAt(0)).getValue().
84 k2 = ((DERInteger)pentanomial.getObjectAt(1)).getValue().
86 k3 = ((DERInteger)pentanomial.getObjectAt(2)).getValue().
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKDSASigner.java 17 import org.bouncycastle.asn1.DERInteger;
224 DERInteger[] rs = new DERInteger[]{ new DERInteger(r), new DERInteger(s) };
234 ((DERInteger)s.getObjectAt(0)).getValue(),
235 ((DERInteger)s.getObjectAt(1)).getValue()
JDKDSAPublicKey.java 5 import org.bouncycastle.asn1.DERInteger;
63 DERInteger derY;
67 derY = (DERInteger)info.getPublicKey();
103 return new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa), new DERInteger(y)).getDEREncoded();
106 return new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(y)).getDEREncoded();
JCEDHPrivateKey.java 15 import org.bouncycastle.asn1.DERInteger;
60 DERInteger derX = (DERInteger)info.getPrivateKey();
126 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(getX()));
JDKDSAPrivateKey.java 5 import org.bouncycastle.asn1.DERInteger;
56 DERInteger derX = (DERInteger)info.getPrivateKey();
92 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(getX()));
JCEECPrivateKey.java 18 import org.bouncycastle.asn1.DERInteger;
252 if (info.getPrivateKey() instanceof DERInteger)
254 DERInteger derD = (DERInteger)info.getPrivateKey();
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMReader.java 36 import org.bouncycastle.asn1.DERInteger;
284 // DERInteger v = (DERInteger)seq.getObjectAt(0);
285 DERInteger p = (DERInteger)seq.getObjectAt(1);
286 DERInteger q = (DERInteger)seq.getObjectAt(2);
287 DERInteger g = (DERInteger)seq.getObjectAt(3);
288 DERInteger y = (DERInteger)seq.getObjectAt(4)
    [all...]
MiscPEMGenerator.java 27 import org.bouncycastle.asn1.DERInteger;
157 v.add(new DERInteger(0));
158 v.add(new DERInteger(p.getP()));
159 v.add(new DERInteger(p.getQ()));
160 v.add(new DERInteger(p.getG()));
165 v.add(new DERInteger(y));
166 v.add(new DERInteger(x));
267 v.add(new DERInteger(0));
268 v.add(new DERInteger(p.getP()));
269 v.add(new DERInteger(p.getQ()))
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
AuthorityKeyIdentifier.java 8 import org.bouncycastle.asn1.DERInteger;
38 DERInteger certserno=null;
84 this.certserno = DERInteger.getInstance(o, false);
135 this.certserno = new DERInteger(serialNumber);
148 this.certserno = new DERInteger(serialNumber);
173 this.certserno = new DERInteger(serialNumber);
V3TBSCertificateGenerator.java 5 import org.bouncycastle.asn1.DERInteger;
31 DERTaggedObject version = new DERTaggedObject(0, new DERInteger(2));
33 DERInteger serialNumber;
50 DERInteger serialNumber)
X509CertificateStructure.java 7 import org.bouncycastle.asn1.DERInteger;
83 public DERInteger getSerialNumber()
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/sec/
ECPrivateKeyStructure.java 14 import org.bouncycastle.asn1.DERInteger;
42 v.add(new DERInteger(1));
64 v.add(new DERInteger(1));
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java 11 import org.bouncycastle.asn1.DERInteger;
104 DERInteger derX = (DERInteger)keyInfo.getPrivateKey();
117 // DERInteger derX = (DERInteger)keyInfo.getPrivateKey();
125 DERInteger derX = (DERInteger)keyInfo.getPrivateKey();
PublicKeyFactory.java 13 import org.bouncycastle.asn1.DERInteger;
140 DERInteger derY = (DERInteger)keyInfo.getPublicKey();
153 // DERInteger derY = (DERInteger)keyInfo.getPublicKey();
162 DERInteger derY = (DERInteger)keyInfo.getPublicKey();
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
Signature.java 15 import org.bouncycastle.asn1.DERInteger;
262 v.add(new DERInteger(r));
263 v.add(new DERInteger(s));
275 sig[0] = ((DERInteger)s.getObjectAt(0)).getValue();
276 sig[1] = ((DERInteger)s.getObjectAt(1)).getValue();
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509CRLStoreSelector.java 3 import org.bouncycastle.asn1.DERInteger;
99 DERInteger dci = null;
106 dci = DERInteger.getInstance(X509ExtensionUtil
AttributeCertificateHolder.java 19 import org.bouncycastle.asn1.DERInteger;
64 new DERInteger(serialNumber)));
88 new DERInteger(cert.getSerialNumber())));
X509Util.java 25 import org.bouncycastle.asn1.DERInteger;
167 new DERInteger(saltSize),
168 new DERInteger(1));

Completed in 2383 milliseconds

12 3