/openssl-master/crypto/evp/ |
A D | p_seal.c | 34 if (!EVP_EncryptInit_ex(ctx, type, NULL, NULL, NULL)) in EVP_SealInit() 54 if (!EVP_EncryptInit_ex(ctx, NULL, NULL, key, iv)) in EVP_SealInit() 85 i = EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, NULL); in EVP_SealFinal()
|
/openssl-master/crypto/cmac/ |
A D | cmac.c | 121 if (!EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, zero_iv)) in CMAC_Init() 131 if (!EVP_EncryptInit_ex(ctx->cctx, cipher, impl, NULL, NULL)) in CMAC_Init() 144 if (!EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, key, zero_iv)) in CMAC_Init() 154 if (!EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, zero_iv)) in CMAC_Init() 248 return EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, ctx->tbl); in CMAC_resume()
|
/openssl-master/test/ |
A D | aesgcmtest.c | 48 && TEST_true(EVP_EncryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, in do_encrypt() 50 && TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, gcm_key, in do_encrypt() 113 && TEST_true(EVP_EncryptInit_ex(ctx, cipher, NULL, NULL, NULL)) in badkeylen_test()
|
A D | evp_libctx_test.c | 368 if (!TEST_true(EVP_EncryptInit_ex(ctx, cipher, NULL, key, iv)) in test_cipher_reinit() 370 || !TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, key, iv)) in test_cipher_reinit() 374 && (!TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, iv)) in test_cipher_reinit() 454 if (!TEST_true(EVP_EncryptInit_ex(ctx, cipher, NULL, key, iv)) in test_cipher_reinit_partialupdate() 456 || !TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, key, iv)) in test_cipher_reinit_partialupdate() 464 if (!TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, iv)) in test_cipher_reinit_partialupdate()
|
A D | afalgtest.c | 123 ret = EVP_EncryptInit_ex(ctx, cipher, e, NULL, NULL); in test_pr16743()
|
A D | evp_extra_test.c | 2644 || !TEST_true(EVP_EncryptInit_ex(ctx, cipher, NULL, in test_decrypt_null_chunks() 3023 || !TEST_true(EVP_EncryptInit_ex(ctx, type, NULL, key, init_iv)) in test_evp_iv_aes() 3036 if (!TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, NULL)) in test_evp_iv_aes() 3134 || !TEST_true(EVP_EncryptInit_ex(ctx, type, NULL, key, init_iv)) in test_evp_iv_des() 3146 if (!TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, NULL)) in test_evp_iv_des() 4182 if (!TEST_true(EVP_EncryptInit_ex(ctx, EVP_aes_128_cbc(), e, keyiv, keyiv))) in test_cipher_with_engine()
|
A D | threadstest.c | 368 if (!TEST_true(EVP_EncryptInit_ex(cipherctx, ciph, NULL, key, iv)) in thread_general_worker()
|
/openssl-master/providers/implementations/macs/ |
A D | gmac_prov.c | 109 if (!EVP_EncryptInit_ex(ctx, NULL, NULL, key, NULL)) in gmac_setkey() 221 if (!EVP_EncryptInit_ex(ctx, ossl_prov_cipher_cipher(&macctx->cipher), in gmac_set_ctx_params() 237 || !EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, p->data)) in gmac_set_ctx_params()
|
/openssl-master/doc/man3/ |
A D | EVP_aes_128_gcm.pod | 164 only be one L<EVP_EncryptUpdate(3)> call per L<EVP_EncryptInit_ex(3)> call (and 167 The I<iv> parameter to L<EVP_EncryptInit_ex(3)> or L<EVP_DecryptInit_ex(3)> is
|
A D | RC4_set_key.pod | 23 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
|
A D | SSL_CTX_set_tlsext_ticket_key_cb.pod | 68 set using L<EVP_EncryptInit_ex(3)>. The hmac context and digest can be set using 182 if (EVP_EncryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, key->aes_key,
|
A D | BF_encrypt.pod | 37 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
|
A D | EVP_CIPHER_meth_new.pod | 192 EVP_CipherInit_ex(), EVP_EncryptInit(), EVP_EncryptInit_ex(),
|
A D | EVP_EncryptInit.pod | 11 EVP_EncryptInit_ex, 113 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, 356 =item EVP_EncryptInit_ex() 420 Behave in a similar way to EVP_EncryptInit_ex(), EVP_DecryptInit_ex() and 462 to EVP_EncryptInit_ex()) an implementation of the cipher will be implicitly 1456 The functions EVP_EncryptInit(), EVP_EncryptInit_ex(),
|
/openssl-master/crypto/cms/ |
A D | cms_pwri.c | 93 if (EVP_EncryptInit_ex(ctx, kekciph, NULL, NULL, NULL) <= 0) { in CMS_add0_recipient_password() 103 if (EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, iv) <= 0) { in CMS_add0_recipient_password()
|
A D | cms_dh.c | 128 if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL)) in dh_cms_set_shared_info()
|
A D | cms_ec.c | 192 if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL)) in ecdh_cms_set_shared_info()
|
A D | cms_kari.c | 469 ret = EVP_EncryptInit_ex(ctx, fetched_kekcipher, NULL, NULL, NULL); in cms_wrap_init()
|
/openssl-master/demos/cipher/ |
A D | aesccm.c | 112 if (!EVP_EncryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce)) in aes_ccm_encrypt()
|
/openssl-master/providers/implementations/kdfs/ |
A D | krb5kdf.c | 331 ret = EVP_EncryptInit_ex(ctx, cipher, engine, key, NULL); in cipher_init()
|
/openssl-master/crypto/modes/ |
A D | siv128.c | 199 || !EVP_EncryptInit_ex(ctx->cipher_ctx, ctr, NULL, key + klen, NULL) in ossl_siv128_init()
|
/openssl-master/doc/man7/ |
A D | provider.pod | 206 L<EVP_DigestInit_ex(3)>, L<EVP_EncryptInit_ex(3)>,
|
A D | provider-cipher.pod | 61 them available to applications via the API functions L<EVP_EncryptInit_ex(3)>,
|
/openssl-master/crypto/pem/ |
A D | pem_lib.c | 391 || !EVP_EncryptInit_ex(ctx, enc, NULL, key, iv) in PEM_ASN1_write_bio()
|
A D | pvkfmt.c | 1081 if (!EVP_EncryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in i2b_PVK()
|