Home
last modified time | relevance | path

Searched refs:EVP_EncryptInit_ex (Results 1 – 25 of 34) sorted by relevance

12

/openssl-master/crypto/evp/
A Dp_seal.c34 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 Dcmac.c121 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 Daesgcmtest.c48 && 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 Devp_libctx_test.c368 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 Dafalgtest.c123 ret = EVP_EncryptInit_ex(ctx, cipher, e, NULL, NULL); in test_pr16743()
A Devp_extra_test.c2644 || !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 Dthreadstest.c368 if (!TEST_true(EVP_EncryptInit_ex(cipherctx, ciph, NULL, key, iv)) in thread_general_worker()
/openssl-master/providers/implementations/macs/
A Dgmac_prov.c109 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 DEVP_aes_128_gcm.pod164 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 DRC4_set_key.pod23 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
A DSSL_CTX_set_tlsext_ticket_key_cb.pod68 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 DBF_encrypt.pod37 instead use L<EVP_EncryptInit_ex(3)>, L<EVP_EncryptUpdate(3)> and
A DEVP_CIPHER_meth_new.pod192 EVP_CipherInit_ex(), EVP_EncryptInit(), EVP_EncryptInit_ex(),
A DEVP_EncryptInit.pod11 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 Dcms_pwri.c93 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 Dcms_dh.c128 if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL)) in dh_cms_set_shared_info()
A Dcms_ec.c192 if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL)) in ecdh_cms_set_shared_info()
A Dcms_kari.c469 ret = EVP_EncryptInit_ex(ctx, fetched_kekcipher, NULL, NULL, NULL); in cms_wrap_init()
/openssl-master/demos/cipher/
A Daesccm.c112 if (!EVP_EncryptInit_ex(ctx, NULL, NULL, ccm_key, ccm_nonce)) in aes_ccm_encrypt()
/openssl-master/providers/implementations/kdfs/
A Dkrb5kdf.c331 ret = EVP_EncryptInit_ex(ctx, cipher, engine, key, NULL); in cipher_init()
/openssl-master/crypto/modes/
A Dsiv128.c199 || !EVP_EncryptInit_ex(ctx->cipher_ctx, ctr, NULL, key + klen, NULL) in ossl_siv128_init()
/openssl-master/doc/man7/
A Dprovider.pod206 L<EVP_DigestInit_ex(3)>, L<EVP_EncryptInit_ex(3)>,
A Dprovider-cipher.pod61 them available to applications via the API functions L<EVP_EncryptInit_ex(3)>,
/openssl-master/crypto/pem/
A Dpem_lib.c391 || !EVP_EncryptInit_ex(ctx, enc, NULL, key, iv) in PEM_ASN1_write_bio()
A Dpvkfmt.c1081 if (!EVP_EncryptInit_ex(cctx, rc4, NULL, keybuf, NULL)) in i2b_PVK()

Completed in 38 milliseconds

12