Searched refs:EVP_CipherInit_ex2 (Results 1 – 9 of 9) sorted by relevance
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_EncryptInit.pod | 20 EVP_CipherInit_ex2, 133 int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, 292 EVP_CIPHER_CTX_ctrl() must be called after EVP_CipherInit_ex2(). Other restrictions 409 =item EVP_CipherInit_ex2(), EVP_CipherInit_ex(), EVP_CipherUpdate() and 496 EVP_DecryptInit_ex2() or EVP_CipherInit_ex2(). By default encryption operations 1201 EVP_CipherInit_ex2() and EVP_CipherUpdate() return 1 for success and 0 for failure. 1490 EVP_DecryptFinal_ex(), EVP_CipherInit_ex2() and EVP_CipherFinal_ex() 1603 if (!EVP_CipherInit_ex2(ctx, EVP_aes_128_cbc(), NULL, NULL, 1613 if (!EVP_CipherInit_ex2(ctx, NULL, key, iv, do_encrypt, NULL)) { 1670 if (!EVP_CipherInit_ex2(ctx, cipher, key, iv, encrypt, params)) [all …]
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_enc.c | 434 int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex2() function 498 return EVP_CipherInit_ex2(ctx, cipher, key, iv, 1, params); in EVP_EncryptInit_ex2() 518 return EVP_CipherInit_ex2(ctx, cipher, key, iv, 0, params); in EVP_DecryptInit_ex2()
|
/freebsd/crypto/openssl/test/ |
H A D | evp_extra_test.c | 3951 || !TEST_true(EVP_CipherInit_ex2(ctx, type, t->key, t->iv, t->initenc, NULL)) in test_evp_reinit_seq() 3958 || !TEST_true(EVP_CipherInit_ex2(ctx, NULL, NULL, NULL, -1, NULL)) in test_evp_reinit_seq()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | evp.h | 792 __owur int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
/freebsd/secure/lib/libcrypto/ |
H A D | Version.map | 4473 EVP_CipherInit_ex2;
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | migration_guide.pod | 1296 Use the higher level functions EVP_CipherInit_ex2(), EVP_CipherUpdate() and
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | Makefile | 1772 MLINKS+= EVP_EncryptInit.3 EVP_CipherInit_ex2.3
|
/freebsd/crypto/openssl/util/ |
H A D | libcrypto.num | 5332 EVP_CipherInit_ex2 5460 3_0_0 EXIST::FUNCTION:
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 247 EVP_DecryptInit_ex2() or EVP_CipherInit_ex2() with OSSL_PARAM parameters 636 EVP_CipherInit_ex2() functions (as well as other similarly named encryption
|