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

  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
pmeth_gn.c 204 EVP_PKEY_CTX *mac_ctx = NULL; local
206 mac_ctx = EVP_PKEY_CTX_new_id(type, e);
207 if (!mac_ctx)
209 if (EVP_PKEY_keygen_init(mac_ctx) <= 0)
211 if (EVP_PKEY_CTX_ctrl(mac_ctx, -1, EVP_PKEY_OP_KEYGEN,
215 if (EVP_PKEY_keygen(mac_ctx, &mac_key) <= 0)
218 if (mac_ctx)
219 EVP_PKEY_CTX_free(mac_ctx);
  /external/openssl/crypto/evp/
pmeth_gn.c 204 EVP_PKEY_CTX *mac_ctx = NULL; local
206 mac_ctx = EVP_PKEY_CTX_new_id(type, e);
207 if (!mac_ctx)
209 if (EVP_PKEY_keygen_init(mac_ctx) <= 0)
211 if (EVP_PKEY_CTX_ctrl(mac_ctx, -1, EVP_PKEY_OP_KEYGEN,
215 if (EVP_PKEY_keygen(mac_ctx, &mac_key) <= 0)
218 if (mac_ctx)
219 EVP_PKEY_CTX_free(mac_ctx);
  /external/chromium_org/third_party/openssl/openssl/apps/
dgst.c 369 EVP_PKEY_CTX *mac_ctx = NULL; local
371 if (!init_gen_str(bio_err, &mac_ctx, mac_name,e, 0))
379 if (pkey_ctrl_string(mac_ctx, macopt) <= 0)
389 if (EVP_PKEY_keygen(mac_ctx, &sigkey) <= 0)
397 if (mac_ctx)
398 EVP_PKEY_CTX_free(mac_ctx);
  /external/openssl/apps/
dgst.c 369 EVP_PKEY_CTX *mac_ctx = NULL; local
371 if (!init_gen_str(bio_err, &mac_ctx, mac_name,e, 0))
379 if (pkey_ctrl_string(mac_ctx, macopt) <= 0)
389 if (EVP_PKEY_keygen(mac_ctx, &sigkey) <= 0)
397 if (mac_ctx)
398 EVP_PKEY_CTX_free(mac_ctx);
  /external/openssl/ssl/
t1_enc.c 338 EVP_MD_CTX *mac_ctx; local
383 mac_ctx=ssl_replace_hash(&s->read_hash,NULL);
424 mac_ctx = EVP_MD_CTX_create();
425 if (!mac_ctx)
427 s->write_hash = mac_ctx;
430 mac_ctx = ssl_replace_hash(&s->write_hash,NULL);
502 EVP_DigestSignInit(mac_ctx,NULL,m,NULL,mac_key);
985 EVP_MD_CTX hmac, *mac_ctx; local
1010 mac_ctx = hash;
1016 mac_ctx = &hmac
    [all...]
s3_cbc.c 753 const EVP_CIPHER_CTX *cipher_ctx, EVP_MD_CTX *mac_ctx,
759 block_size = EVP_MD_CTX_block_size(mac_ctx);
787 EVP_DigestSignUpdate(mac_ctx, data,
ssl_locl.h     [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
t1_enc.c 396 EVP_MD_CTX *mac_ctx; local
420 mac_ctx = ssl_replace_hash(&s->read_hash, NULL);
441 mac_ctx = ssl_replace_hash(&s->write_hash, NULL);
511 EVP_DigestSignInit(mac_ctx, NULL, s->s3->tmp.new_hash, NULL, mac_key);
1237 EVP_MD_CTX hmac, *mac_ctx; local
    [all...]
s3_cbc.c 753 const EVP_CIPHER_CTX *cipher_ctx, EVP_MD_CTX *mac_ctx,
759 block_size = EVP_MD_CTX_block_size(mac_ctx);
787 EVP_DigestSignUpdate(mac_ctx, data,
ssl_locl.h     [all...]

Completed in 361 milliseconds