HomeSort by relevance Sort by last modified time
    Searched defs:md_type (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/webrtc/base/
openssldigest.cc 88 int md_type = EVP_MD_type(md); local
89 if (md_type == NID_md5) {
91 } else if (md_type == NID_sha1) {
93 } else if (md_type == NID_sha224) {
95 } else if (md_type == NID_sha256) {
97 } else if (md_type == NID_sha384) {
99 } else if (md_type == NID_sha512) {
  /external/openssl/crypto/pkcs12/
p12_mutl.c 70 const EVP_MD *md_type; local
86 if(!(md_type =
91 md_size = EVP_MD_size(md_type);
95 md_size, key, md_type)) {
100 if (!HMAC_Init_ex(&hmac, key, md_size, md_type, NULL)
133 unsigned char *salt, int saltlen, int iter, const EVP_MD *md_type)
138 if (!md_type) md_type = EVP_sha1();
139 if (PKCS12_setup_mac (p12, iter, salt, saltlen, md_type) ==
157 const EVP_MD *md_type)
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_doit.c 1026 int md_type; local
1040 md_type=OBJ_obj2nid(si->digest_alg->algorithm);
1059 if (EVP_MD_CTX_type(mdc) == md_type)
1064 if (EVP_MD_pkey_type(EVP_MD_CTX_md(mdc)) == md_type)
1108 if (!EVP_VerifyInit_ex(&mdc_tmp,EVP_get_digestbynid(md_type), NULL))

Completed in 157 milliseconds