HomeSort by relevance Sort by last modified time
    Searched refs:hashAlgorithm (Results 1 - 25 of 29) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
RSAESOAEPparams.java 18 private AlgorithmIdentifier hashAlgorithm;
46 hashAlgorithm = DEFAULT_HASH_ALGORITHM;
52 AlgorithmIdentifier hashAlgorithm,
56 this.hashAlgorithm = hashAlgorithm;
64 hashAlgorithm = DEFAULT_HASH_ALGORITHM;
75 hashAlgorithm = AlgorithmIdentifier.getInstance(o, true);
91 return hashAlgorithm;
107 * hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1,
134 if (!hashAlgorithm.equals(DEFAULT_HASH_ALGORITHM)
    [all...]
RSASSAPSSparams.java 20 private AlgorithmIdentifier hashAlgorithm;
50 hashAlgorithm = DEFAULT_HASH_ALGORITHM;
57 AlgorithmIdentifier hashAlgorithm,
62 this.hashAlgorithm = hashAlgorithm;
71 hashAlgorithm = DEFAULT_HASH_ALGORITHM;
83 hashAlgorithm = AlgorithmIdentifier.getInstance(o, true);
102 return hashAlgorithm;
123 * hashAlgorithm [0] OAEP-PSSDigestAlgorithms DEFAULT sha1,
150 if (!hashAlgorithm.equals(DEFAULT_HASH_ALGORITHM)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/utils/
FingerprintUtils.java 31 * @param hashAlgorithm
33 public static String getFingerprint(Certificate cert, String hashAlgorithm) {
38 MessageDigest digest = MessageDigest.getInstance(hashAlgorithm);
  /external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_lib.c 112 alg = cid->hashAlgorithm;
148 ret = OBJ_cmp(a->hashAlgorithm->algorithm, b->hashAlgorithm->algorithm);
ocsp_vfy.c 284 if (OBJ_cmp(tmpid->hashAlgorithm->algorithm,
285 cid->hashAlgorithm->algorithm))
308 if (!(dgst = EVP_get_digestbyobj(cid->hashAlgorithm->algorithm)))
ocsp_asn.c 71 ASN1_SIMPLE(OCSP_CERTID, hashAlgorithm, X509_ALGOR),
ocsp_prn.c 74 i2a_ASN1_OBJECT(bp, a->hashAlgorithm->algorithm);
ocsp_srv.c 92 if (pmd) *pmd = cid->hashAlgorithm->algorithm;
ocsp.h 94 * hashAlgorithm AlgorithmIdentifier,
101 X509_ALGOR *hashAlgorithm;
  /external/openssl/crypto/ocsp/
ocsp_lib.c 112 alg = cid->hashAlgorithm;
148 ret = OBJ_cmp(a->hashAlgorithm->algorithm, b->hashAlgorithm->algorithm);
ocsp_vfy.c 284 if (OBJ_cmp(tmpid->hashAlgorithm->algorithm,
285 cid->hashAlgorithm->algorithm))
308 if (!(dgst = EVP_get_digestbyobj(cid->hashAlgorithm->algorithm)))
ocsp_asn.c 71 ASN1_SIMPLE(OCSP_CERTID, hashAlgorithm, X509_ALGOR),
ocsp_prn.c 74 i2a_ASN1_OBJECT(bp, a->hashAlgorithm->algorithm);
ocsp_srv.c 92 if (pmd) *pmd = cid->hashAlgorithm->algorithm;
ocsp.h 94 * hashAlgorithm AlgorithmIdentifier,
101 X509_ALGOR *hashAlgorithm;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
AlgorithmParametersSpi.java 56 AlgorithmIdentifier hashAlgorithm = new AlgorithmIdentifier(
66 RSAESOAEPparams oaepP = new RSAESOAEPparams(hashAlgorithm, maskGenAlgorithm, pSourceAlgorithm);
171 AlgorithmIdentifier hashAlgorithm = new AlgorithmIdentifier(
178 RSASSAPSSparams pssP = new RSASSAPSSparams(hashAlgorithm, maskGenAlgorithm, new ASN1Integer(pssSpec.getSaltLength()), new ASN1Integer(pssSpec.getTrailerField()));
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_asn1.c 101 ASN1_EXP_OPT(RSA_PSS_PARAMS, hashAlgorithm, X509_ALGOR,0),
rsa_ameth.c 318 if (pss->hashAlgorithm)
320 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0)
507 if (pss->hashAlgorithm)
509 md = EVP_get_digestbyobj(pss->hashAlgorithm->algorithm);
611 pss->hashAlgorithm = X509_ALGOR_new();
612 if (!pss->hashAlgorithm)
614 X509_ALGOR_set_md(pss->hashAlgorithm, sigmd);
rsa.h 328 X509_ALGOR *hashAlgorithm;
  /external/openssl/crypto/rsa/
rsa_asn1.c 101 ASN1_EXP_OPT(RSA_PSS_PARAMS, hashAlgorithm, X509_ALGOR,0),
rsa_ameth.c 318 if (pss->hashAlgorithm)
320 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0)
507 if (pss->hashAlgorithm)
509 md = EVP_get_digestbyobj(pss->hashAlgorithm->algorithm);
611 pss->hashAlgorithm = X509_ALGOR_new();
612 if (!pss->hashAlgorithm)
614 X509_ALGOR_set_md(pss->hashAlgorithm, sigmd);
rsa.h 328 X509_ALGOR *hashAlgorithm;
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
rsa.h 328 X509_ALGOR *hashAlgorithm;
ocsp.h 94 * hashAlgorithm AlgorithmIdentifier,
101 X509_ALGOR *hashAlgorithm;
  /external/openssl/include/openssl/
rsa.h 328 X509_ALGOR *hashAlgorithm;

Completed in 734 milliseconds

1 2