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

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERNull.java 8 public class DERNull
11 public static final DERNull INSTANCE = new DERNull();
18 protected DERNull()
ASN1Sequence.java 228 return DERNull.INSTANCE;
ASN1InputStream.java 380 return DERNull.INSTANCE; // actual content is ignored (enforce 0 length?)
ASN1Set.java 248 return DERNull.INSTANCE;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
AlgorithmIdentifier.java 9 import org.bouncycastle.asn1.DERNull;
138 v.add(DERNull.INSTANCE);
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Util.java 26 import org.bouncycastle.asn1.DERNull;
135 AlgorithmIdentifier sha1AlgId = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
141 // AlgorithmIdentifier sha224AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha224, DERNull.INSTANCE);
147 AlgorithmIdentifier sha256AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha256, DERNull.INSTANCE);
152 AlgorithmIdentifier sha384AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha384, DERNull.INSTANCE);
157 AlgorithmIdentifier sha512AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha512, DERNull.INSTANCE);
202 return new AlgorithmIdentifier(sigOid, DERNull.INSTANCE);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
RSAESOAEPparams.java 7 import org.bouncycastle.asn1.DERNull;
23 public final static AlgorithmIdentifier DEFAULT_HASH_ALGORITHM = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
RSASSAPSSparams.java 8 import org.bouncycastle.asn1.DERNull;
24 public final static AlgorithmIdentifier DEFAULT_HASH_ALGORITHM = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 31 import org.bouncycastle.asn1.DERNull;
212 AlgorithmIdentifier sha1AlgId = new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1, DERNull.INSTANCE);
218 // AlgorithmIdentifier sha224AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha224, DERNull.INSTANCE);
224 AlgorithmIdentifier sha256AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha256, DERNull.INSTANCE);
229 AlgorithmIdentifier sha384AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha384, DERNull.INSTANCE);
234 AlgorithmIdentifier sha512AlgId = new AlgorithmIdentifier(NISTObjectIdentifiers.id_sha512, DERNull.INSTANCE);
386 this.sigAlgId = new AlgorithmIdentifier(sigOID, DERNull.INSTANCE);
586 if (params != null && !DERNull.INSTANCE.equals(params))
618 if (params != null && !DERNull.INSTANCE.equals(params))
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateKey.java 5 import org.bouncycastle.asn1.DERNull;
81 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKeyStructure(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO).getDERObject());
JCERSAPublicKey.java 4 import org.bouncycastle.asn1.DERNull;
94 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPublicKeyStructure(getModulus(), getPublicExponent()).getDERObject());
X509SignatureUtil.java 6 import org.bouncycastle.asn1.DERNull;
29 private static final ASN1Null derNull = DERNull.INSTANCE;
37 if (params != null && !derNull.equals(params))
69 if (params != null && !derNull.equals(params))
JDKDSAPublicKey.java 6 import org.bouncycastle.asn1.DERNull;
86 return parameters != null && !DERNull.INSTANCE.equals(parameters);
JCERSAPrivateCrtKey.java 4 import org.bouncycastle.asn1.DERNull;
129 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKeyStructure(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()).getDERObject());
JDKDigestSignature.java 15 import org.bouncycastle.asn1.DERNull;
72 this.algId = new AlgorithmIdentifier(objId, DERNull.INSTANCE);
JDKAlgorithmParameters.java 9 import org.bouncycastle.asn1.DERNull;
    [all...]
X509CertificateObject.java 40 import org.bouncycastle.asn1.DERNull;
782 if (id2.getParameters() != null && !id2.getParameters().equals(DERNull.INSTANCE))
792 if (id1.getParameters() != null && !id1.getParameters().equals(DERNull.INSTANCE))
JCEECPrivateKey.java 19 import org.bouncycastle.asn1.DERNull;
303 params = new X962Parameters(DERNull.INSTANCE);
JCEECPublicKey.java 18 import org.bouncycastle.asn1.DERNull;
383 params = new X962Parameters(DERNull.INSTANCE);
JDKPKCS12KeyStore.java 49 import org.bouncycastle.asn1.DERNull;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
RSADigestSigner.java 3 import org.bouncycastle.asn1.DERNull;
61 algId = new AlgorithmIdentifier((DERObjectIdentifier)oidMap.get(digest.getAlgorithmName()), DERNull.INSTANCE);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 24 import org.bouncycastle.asn1.DERNull;
83 if (o == null || o.equals(DERNull.INSTANCE))

Completed in 7158 milliseconds