Searched refs:EVP_CipherInit_ex2 (Results 1 – 9 of 9) sorted by relevance
/openssl/doc/man3/ |
H A D | EVP_EncryptInit.pod | 22 EVP_CipherInit_ex2, 142 int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, 444 =item EVP_CipherInit_ex2(), EVP_CipherInit_ex(), EVP_CipherUpdate() and 578 EVP_DecryptInit_ex2() or EVP_CipherInit_ex2(). By default encryption operations 1380 EVP_CipherInit_ex2() and EVP_CipherUpdate() return 1 for success and 0 for 1387 not been initialized via a call to B<EVP_CipherInit_ex2>. 1683 EVP_DecryptFinal_ex(), EVP_CipherInit_ex2() and EVP_CipherFinal_ex() 1796 if (!EVP_CipherInit_ex2(ctx, EVP_aes_128_cbc(), NULL, NULL, 1806 if (!EVP_CipherInit_ex2(ctx, NULL, key, iv, do_encrypt, NULL)) { 1863 if (!EVP_CipherInit_ex2(ctx, cipher, key, iv, encrypt, params)) [all …]
|
/openssl/crypto/evp/ |
H A D | evp_enc.c | 455 int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex2() function 647 return EVP_CipherInit_ex2(ctx, cipher, key, iv, 1, params); in EVP_EncryptInit_ex2() 667 return EVP_CipherInit_ex2(ctx, cipher, key, iv, 0, params); in EVP_DecryptInit_ex2()
|
/openssl/test/ |
H A D | evp_libctx_test.c | 647 && TEST_true(EVP_CipherInit_ex2(ctx, tdes_cipher, NULL, NULL, 1, in test_cipher_tdes_randkey()
|
H A D | evp_extra_test.c | 4409 || !TEST_true(EVP_CipherInit_ex2(ctx, type, t->key, t->iv, t->initenc, NULL)) in test_evp_reinit_seq() 4416 || !TEST_true(EVP_CipherInit_ex2(ctx, NULL, NULL, NULL, -1, NULL)) in test_evp_reinit_seq()
|
H A D | evp_test.c | 1127 if (!EVP_CipherInit_ex2(ctx_base, expected->cipher, NULL, NULL, enc, in cipher_test_enc()
|
/openssl/include/openssl/ |
H A D | evp.h | 807 __owur int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
/openssl/doc/man7/ |
H A D | ossl-guide-migration.pod | 1317 Use the higher level functions EVP_CipherInit_ex2(), EVP_CipherUpdate() and
|
/openssl/util/ |
H A D | libcrypto.num | 5332 EVP_CipherInit_ex2 5460 3_0_0 EXIST::FUNCTION:
|
/openssl/ |
H A D | CHANGES.md | 1138 EVP_DecryptInit_ex2() or EVP_CipherInit_ex2() with OSSL_PARAM parameters 1639 EVP_CipherInit_ex2() functions (as well as other similarly named encryption
|
Completed in 225 milliseconds