Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/openssl/crypto/evp/
H A Dp_seal.c28 if (!EVP_EncryptInit_ex(ctx, type, NULL, NULL, NULL)) in EVP_SealInit()
40 if (!EVP_EncryptInit_ex(ctx, NULL, NULL, key, iv)) in EVP_SealInit()
63 i = EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, NULL); in EVP_SealFinal()
H A Devp_enc.c240 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex() function
/freebsd-12.1/crypto/openssl/crypto/cmac/
H A Dcmac.c112 if (!EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, zero_iv)) in CMAC_Init()
119 if (cipher && !EVP_EncryptInit_ex(ctx->cctx, cipher, impl, NULL, NULL)) in CMAC_Init()
128 if (!EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, key, zero_iv)) in CMAC_Init()
137 if (!EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, zero_iv)) in CMAC_Init()
225 return EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, ctx->tbl); in CMAC_resume()
/freebsd-12.1/crypto/openssl/crypto/cms/
H A Dcms_pwri.c84 if (EVP_EncryptInit_ex(ctx, kekciph, NULL, NULL, NULL) <= 0) { in CMS_add0_recipient_password()
94 if (EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, iv) <= 0) { in CMS_add0_recipient_password()
H A Dcms_kari.c361 return EVP_EncryptInit_ex(ctx, kekcipher, NULL, NULL, NULL); in cms_wrap_init()
/freebsd-12.1/crypto/openssl/doc/man3/
H A DEVP_EncryptInit.pod8 EVP_EncryptInit_ex,
61 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
134 EVP_EncryptInit_ex() sets up cipher context B<ctx> for encryption
191 similar way to EVP_EncryptInit_ex(), EVP_DecryptInit_ex() and
211 or decryption with EVP_EncryptInit_ex(), EVP_DecryptInit_ex() or
286 EVP_EncryptInit_ex(), EVP_EncryptUpdate() and EVP_EncryptFinal_ex()
490 compatibility with existing code. New code should use EVP_EncryptInit_ex(),
527 EVP_EncryptInit_ex(ctx, EVP_idea_cbc(), NULL, key, iv);
H A DSSL_CTX_set_tlsext_ticket_key_cb.pod56 set using L<EVP_EncryptInit_ex(3)>. The hmac context can be set using
157 EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key->aes_key, iv);
H A DEVP_CIPHER_meth_new.pod188 EVP_CipherInit_ex(), EVP_EncryptInit(), EVP_EncryptInit_ex(),
/freebsd-12.1/contrib/apr-util/crypto/
H A Dapr_crypto_openssl.c522 if (!EVP_EncryptInit_ex(&block->cipherCtx, key->cipher, config->engine,
525 …if (!EVP_EncryptInit_ex(&block->cipherCtx, key->cipher, config->engine, (unsigned char *) key->key…
/freebsd-12.1/contrib/wpa/src/crypto/
H A Dcrypto_openssl.c332 if (EVP_EncryptInit_ex(ctx, type, NULL, key, NULL) != 1) { in aes_encrypt_init()
480 if (EVP_EncryptInit_ex(ctx, EVP_aes_128_cbc(), NULL, key, iv) == 1 && in aes_128_cbc_encrypt()
693 !EVP_EncryptInit_ex(ctx->enc, cipher, NULL, NULL, NULL) || in crypto_cipher_init()
695 !EVP_EncryptInit_ex(ctx->enc, NULL, NULL, key, iv)) { in crypto_cipher_init()
/freebsd-12.1/contrib/libarchive/libarchive/
H A Darchive_cryptor.c336 r = EVP_EncryptInit_ex(ctx->ctx, ctx->type, NULL, ctx->key, NULL); in aes_ctr_encrypt_counter()
/freebsd-12.1/tools/tools/crypto/
H A Dcryptocheck.c959 if (EVP_EncryptInit_ex(ctx, cipher, NULL, (const u_char *)key, in openssl_gcm_encrypt()
1185 if (EVP_EncryptInit_ex(ctx, cipher, NULL, NULL, NULL) != 1) in openssl_ccm_encrypt()
1194 if (EVP_EncryptInit_ex(ctx, NULL, NULL, (const u_char *)key, in openssl_ccm_encrypt()
/freebsd-12.1/crypto/openssl/crypto/dh/
H A Ddh_ameth.c714 if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL)) in dh_cms_set_shared_info()
/freebsd-12.1/crypto/openssl/crypto/pem/
H A Dpvkfmt.c844 if (!EVP_EncryptInit_ex(cctx, EVP_rc4(), NULL, keybuf, NULL)) in i2b_PVK()
H A Dpem_lib.c385 || !EVP_EncryptInit_ex(ctx, enc, NULL, key, iv) in PEM_ASN1_write_bio()
/freebsd-12.1/crypto/openssl/crypto/ec/
H A Dec_ameth.c753 if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL)) in ecdh_cms_set_shared_info()
/freebsd-12.1/crypto/openssl/apps/
H A Dspeed.c1017 EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, iv); in EVP_Update_loop_aead()
3630 EVP_EncryptInit_ex(ctx, evp_cipher, NULL, NULL, no_iv); in multiblock_speed()
3635 EVP_EncryptInit_ex(ctx, NULL, NULL, key, NULL); in multiblock_speed()
H A Dcms.c843 EVP_EncryptInit_ex(wctx, wrap_cipher, NULL, NULL, NULL); in cms_main()
/freebsd-12.1/contrib/unbound/util/
H A Dnet_help.c1341 if (EVP_EncryptInit_ex(evp_sctx, cipher, NULL, ticket_keys->aes_key, iv) != 1) { in tls_session_ticket_key_cb()
/freebsd-12.1/crypto/openssl/include/openssl/
H A Devp.h582 /*__owur*/ int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,
/freebsd-12.1/secure/lib/libcrypto/
H A DVersion.map1504 EVP_EncryptInit_ex;
H A DMakefile.man1460 MLINKS+= EVP_EncryptInit.3 EVP_EncryptInit_ex.3
/freebsd-12.1/contrib/unbound/
H A Dconfig.h.in215 /* Define to 1 if you have the `EVP_EncryptInit_ex' function. */
H A Dconfigure.ac825 … EVP_DigestVerify SSL_CTX_set_tlsext_ticket_key_cb EVP_aes_256_cbc EVP_EncryptInit_ex HMAC_Init_ex…
/freebsd-12.1/crypto/openssl/ssl/statem/
H A Dstatem_srvr.c3942 || !EVP_EncryptInit_ex(ctx, cipher, NULL, in construct_stateless_ticket()