HomeSort by: relevance | last modified time | path
    Searched refs:EVP_DecryptInit_ex (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
p_open.c 30 if (!EVP_DecryptInit_ex(ctx, type, NULL, NULL, NULL))
55 if (!EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv))
70 i = EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL);
evp_enc.c 254 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
p_open.c 29 if (!EVP_DecryptInit_ex(ctx, type, NULL, NULL, NULL))
52 || !EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv))
68 i = EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL);
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
p_open.c 29 if (!EVP_DecryptInit_ex(ctx, type, NULL, NULL, NULL))
54 || !EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv))
70 i = EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL);
  /src/crypto/external/bsd/openssl.old/dist/demos/evp/
aesccm.c 97 EVP_DecryptInit_ex(ctx, EVP_aes_192_ccm(), NULL, NULL, NULL);
105 EVP_DecryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce);
aesgcm.c 92 EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL);
96 EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, gcm_iv);
  /src/crypto/external/apache2/openssl/dist/test/
aesgcmtest.c 81 && TEST_true(EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL,
84 && TEST_true(EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, iv) > 0)
  /src/crypto/external/bsd/openssl/dist/test/
aesgcmtest.c 76 && TEST_true(EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL,
78 && TEST_true(EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, iv) > 0)
  /src/crypto/external/apache2/openssl/dist/demos/cipher/
aesccm.c 195 if (!EVP_DecryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce))
  /src/crypto/external/bsd/openssl/dist/demos/cipher/
aesccm.c 196 if (!EVP_DecryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce))
  /src/external/ibm-public/postfix/dist/src/tls/
tls_server.c 341 EVP_DecryptInit_ex(ctx, tkt_cipher, NOENGINE, key->bits, iv);
376 EVP_DecryptInit_ex(ctx, tkt_cipher, NOENGINE, key->bits, iv);
  /src/crypto/external/bsd/openssl/dist/crypto/cms/
cms_pwri.c 222 || !EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL)
  /src/crypto/external/bsd/openssl.old/dist/crypto/cms/
cms_pwri.c 209 || !EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL)
  /src/crypto/external/apache2/openssl/dist/crypto/cms/
cms_pwri.c 234 || !EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, NULL)
cms_env.c 985 if (!EVP_DecryptInit_ex(ctx, cipher, NULL, kekri->key, NULL)
  /src/crypto/external/apache2/openssl/dist/crypto/pem/
pvkfmt.c 907 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL))
917 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL))
pem_lib.c 485 ok = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0]));
  /src/crypto/external/bsd/openssl/dist/crypto/pem/
pvkfmt.c 875 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL))
885 if (!EVP_DecryptInit_ex(cctx, rc4, NULL, keybuf, NULL))
pem_lib.c 456 ok = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0]));
  /src/crypto/external/bsd/openssl.old/dist/crypto/pem/
pvkfmt.c 714 if (!EVP_DecryptInit_ex(cctx, EVP_rc4(), NULL, keybuf, NULL))
724 if (!EVP_DecryptInit_ex(cctx, EVP_rc4(), NULL, keybuf, NULL))
pem_lib.c 450 ok = EVP_DecryptInit_ex(ctx, cipher->cipher, NULL, key, &(cipher->iv[0]));
  /src/external/bsd/tcpdump/dist/
print-esp.c 149 * Initialize the cipher by calling EVP_DecryptInit_ex(), because
152 * null cipher, will clear the already-set cipher. EVP_DecryptInit_ex(),
154 * the IV in a second call after a first call to EVP_DecryptInit_ex()
164 return EVP_DecryptInit_ex(ctx, cipher, NULL, key, iv);
169 * have EVP_DecryptInit_ex(); we rely on it not trashing the context.
  /src/crypto/external/apache2/openssl/dist/crypto/hpke/
hpke.c 160 if (EVP_DecryptInit_ex(ctx, hctx->aead_ciph, NULL, NULL, NULL) != 1) {
171 if (EVP_DecryptInit_ex(ctx, NULL, NULL, hctx->key, iv) != 1) {
  /src/external/bsd/wpa/dist/src/crypto/
crypto_openssl.c 536 if (EVP_DecryptInit_ex(ctx, type, NULL, key, NULL) != 1 ||
658 if (EVP_DecryptInit_ex(ctx, type, NULL, kek, NULL) == 1 &&
727 if (EVP_DecryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv) == 1 &&
923 !EVP_DecryptInit_ex(ctx->dec, cipher, NULL, NULL, NULL) ||
926 !EVP_DecryptInit_ex(ctx->dec, NULL, NULL, key, iv)) {
5112 wpa_printf(MSG_INFO, "OpenSSL:%s:EVP_DecryptInit_ex failed",
5275 EVP_DecryptInit_ex(cctx, ctx->cipher, NULL, ctx->key,
5277 wpa_printf(MSG_INFO, "OpenSSL:%s:EVP_DecryptInit_ex failed",
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_port.c 1021 if (!EVP_DecryptInit_ex(port->token_ctx, NULL, NULL, NULL, iv)

Completed in 32 milliseconds

1 2