Searched defs:hash_type (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/crypto/third_party/nss/
H A Dsecsign.cc66 HASH_HashType hash_type; local
69 hash_type = HASH_AlgSHA1;
73 hash_type = HASH_AlgSHA224;
77 hash_type = HASH_AlgSHA256;
80 hash_type = HASH_AlgSHA384;
83 hash_type = HASH_AlgSHA512;
91 std::vector<uint8> hash_data(HASH_ResultLen(hash_type));
93 hash_type, &hash_data[0], input->data, input->len);
/external/chromium_org/crypto/
H A Dec_signature_creator_nss.cc27 HASH_HashType hash_type,
36 std::vector<uint8> hash_data(HASH_ResultLen(hash_type));
38 hash_type, &hash_data[0], input->data, input->len);
24 SignData(SECItem* result, SECItem* input, SECKEYPrivateKey* key, HASH_HashType hash_type, size_t* out_signature_len) argument
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dnssidentity.cc274 HASH_HashType hash_type; local
277 hash_type = HASH_AlgSHA1;
281 hash_type = HASH_AlgSHA224;
284 hash_type = HASH_AlgSHA256;
286 hash_type = HASH_AlgSHA384;
288 hash_type = HASH_AlgSHA512;
293 ho = HASH_GetHashObject(hash_type);
/external/chromium_org/content/renderer/webcrypto/
H A Dwebcrypto_impl_nss.cc623 HASH_HashType hash_type = WebCryptoAlgorithmToNSSHashType(algorithm); local
624 if (hash_type == HASH_AlgNULL) {
628 HASHContext* context = HASH_Create(hash_type);

Completed in 82 milliseconds