HomeSort by relevance Sort by last modified time
    Searched full:algorithmidentifier (Results 101 - 125 of 172) sorted by null

1 2 3 45 6 7

  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcpkix-jdk15on/1.48/
bcpkix-jdk15on-1.48.jar 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 82 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
579 AlgorithmIdentifier algId,
663 AlgorithmIdentifier algId,
715 private Cipher createCipher(int mode, char[] password, AlgorithmIdentifier algId)
720 AlgorithmIdentifier encScheme = AlgorithmIdentifier.getInstance(alg.getEncryptionScheme());
736 AlgorithmIdentifier encryptionAlg = AlgorithmIdentifier.getInstance(alg.getEncryptionScheme());
795 AlgorithmIdentifier algId = dInfo.getAlgorithmId();
    [all...]
  /external/bouncycastle/patches/
bcpkix.patch 620 public AlgorithmIdentifier findEncryptionAlgorithm(AlgorithmIdentifier signatureAlgorithm)
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509AttributeCertificateHolder.java 15 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
266 * @return the AlgorithmIdentifier describing the signature algorithm used to create this attribute certificate.
268 public AlgorithmIdentifier getSignatureAlgorithm()
X509CertificateHolder.java 14 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
227 * @return the AlgorithmIdentifier describing the signature algorithm used to create this attribute certificate.
229 public AlgorithmIdentifier getSignatureAlgorithm()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DigestSignatureSpi.java 23 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
53 private AlgorithmIdentifier algId;
73 this.algId = new AlgorithmIdentifier(objId, DERNull.INSTANCE);
BCRSAPrivateCrtKey.java 12 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
130 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
  /external/wpa_supplicant_8/src/tls/
pkcs1.c 229 * DigestAlgorithmIdentifier ::= AlgorithmIdentifier
249 * AlgorithmIdentifier ::= SEQUENCE {
259 "PKCS #1: Expected SEQUENCE (AlgorithmIdentifier) - found class %d tag 0x%x",
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralSubtrees.java 66 * Returns ASN.1 encoded form of this X.509 AlgorithmIdentifier value.
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java 22 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
80 AlgorithmIdentifier algId = keyInfo.getPrivateKeyAlgorithm();
PublicKeyFactory.java 22 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
87 AlgorithmIdentifier algId = keyInfo.getAlgorithm();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
BCDHPrivateKey.java 21 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
132 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(getX()));
BCDHPublicKey.java 17 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
126 return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).toASN1Primitive()), new ASN1Integer(y));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateCrtKey.java 12 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
130 return KeyUtil.getEncodedPrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKey(getModulus(), getPublicExponent(), getPrivateExponent(), getPrimeP(), getPrimeQ(), getPrimeExponentP(), getPrimeExponentQ(), getCrtCoefficient()));
JCEECPrivateKey.java 29 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
341 // info = new PrivateKeyInfo(new AlgorithmIdentifier(CryptoProObjectIdentifiers.gostR3410_2001, params.toASN1Primitive()), keyStructure.toASN1Primitive());
347 info = new PrivateKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_ecPublicKey, params.toASN1Primitive()), keyStructure.toASN1Primitive());
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
SignedData.java 31 import org.apache.harmony.security.x509.AlgorithmIdentifier;
110 new ASN1SetOf(AlgorithmIdentifier.ASN1),
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformation.java 26 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
43 private AlgorithmIdentifier digestAlgorithm;
44 private AlgorithmIdentifier encryptionAlgorithm;
127 public AlgorithmIdentifier getDigestAlgorithmID()
494 DigestInfo digInfo = new DigestInfo(new AlgorithmIdentifier(digestAlgorithm.getAlgorithm(), DERNull.INSTANCE), resultDigest);
CMSSignedGenerator.java 23 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
99 protected Map getBaseParameters(ASN1ObjectIdentifier contentType, AlgorithmIdentifier digAlgId, byte[] hash)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CertSelectorTest.java 117 // algorithm AlgorithmIdentifier,
  /external/chromium_org/third_party/tlslite/tlslite/
x509.py 78 raise SyntaxError("Unrecognized AlgorithmIdentifier")
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509V1CertificateGenerator.java 29 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
47 private AlgorithmIdentifier sigAlgId;
  /external/chromium_org/chrome/browser/metrics/variations/
variations_seed_store.cc 38 // as an AlgorithmIdentifier, the encoding MUST omit the parameters
39 // field. That is, the AlgorithmIdentifier SHALL be a SEQUENCE of one
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
p5_pbev2.c 110 /* Setup the AlgorithmIdentifier for the encryption scheme */
163 /* Now set up top level AlgorithmIdentifier */
  /external/openssl/crypto/asn1/
p5_pbev2.c 110 /* Setup the AlgorithmIdentifier for the encryption scheme */
163 /* Now set up top level AlgorithmIdentifier */

Completed in 792 milliseconds

1 2 3 45 6 7