/freebsd/crypto/openssl/test/ |
H A D | aesgcmtest.c | 47 ret = TEST_ptr(ctx = EVP_CIPHER_CTX_new()) in do_encrypt() 75 ret = TEST_ptr(ctx = EVP_CIPHER_CTX_new()) in do_decrypt() 112 && TEST_ptr(ctx = EVP_CIPHER_CTX_new()) in badkeylen_test()
|
H A D | afalgtest.c | 82 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())) in test_afalg_aes_cbc() 121 ctx = EVP_CIPHER_CTX_new(); in test_pr16743()
|
H A D | tls13encryptiontest.c | 334 s->enc_read_ctx = EVP_CIPHER_CTX_new(); in test_tls13_encryption() 338 s->enc_write_ctx = EVP_CIPHER_CTX_new(); in test_tls13_encryption()
|
H A D | evp_extra_test.c | 1313 || !TEST_ptr(ctx = EVP_CIPHER_CTX_new()) in test_EVP_Enveloped() 3030 || !TEST_ptr(ctx = EVP_CIPHER_CTX_new()) in test_decrypt_null_chunks() 3409 || !TEST_ptr((ctx = EVP_CIPHER_CTX_new())) in test_evp_iv_aes() 3520 || !TEST_ptr((ctx = EVP_CIPHER_CTX_new())) in test_evp_iv_des() 3862 ctx = EVP_CIPHER_CTX_new(); in test_evp_init_seq() 3948 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new()) in test_evp_reinit_seq() 4005 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())) { in test_evp_reset() 4118 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())) { in test_evp_updated_iv() 4203 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())) { in test_gcm_reinit() 4315 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())) in test_ivlen_change() [all …]
|
H A D | pbetest.c | 68 ctx = EVP_CIPHER_CTX_new(); in test_pkcs5_pbe()
|
H A D | evp_libctx_test.c | 343 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())) in test_cipher_reinit() 434 if (!TEST_ptr(ctx = EVP_CIPHER_CTX_new())) in test_cipher_reinit_partialupdate() 594 && TEST_ptr(ctx = EVP_CIPHER_CTX_new()) in test_cipher_tdes_randkey()
|
/freebsd/crypto/openssl/demos/cipher/ |
H A D | aeskeywrap.c | 69 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aes_wrap_encrypt() 126 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aes_wrap_decrypt()
|
H A D | ariacbc.c | 70 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aria_cbc_encrypt() 126 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aria_cbc_decrypt()
|
H A D | aesgcm.c | 88 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aes_gcm_encrypt() 163 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aes_gcm_decrypt()
|
H A D | aesccm.c | 90 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aes_ccm_encrypt() 174 if ((ctx = EVP_CIPHER_CTX_new()) == NULL) in aes_ccm_decrypt()
|
/freebsd/crypto/heimdal/lib/gssapi/krb5/ |
H A D | arcfour.c | 238 rc4_key = EVP_CIPHER_CTX_new(); in _gssapi_get_mic_arcfour() 319 rc4_key = EVP_CIPHER_CTX_new(); in _gssapi_verify_mic_arcfour() 476 rc4_key = EVP_CIPHER_CTX_new(); in _gssapi_wrap_arcfour() 500 rc4_key = EVP_CIPHER_CTX_new(); in _gssapi_wrap_arcfour() 605 rc4_key = EVP_CIPHER_CTX_new(); in _gssapi_unwrap_arcfour() 657 rc4_key = EVP_CIPHER_CTX_new(); in _gssapi_unwrap_arcfour()
|
H A D | unwrap.c | 114 des_ctx = EVP_CIPHER_CTX_new(); in unwrap_des() 158 des_ctx = EVP_CIPHER_CTX_new(); in unwrap_des()
|
/freebsd/crypto/openssh/ |
H A D | cipher-chachapoly-libcrypto.c | 50 if ((ctx->main_evp = EVP_CIPHER_CTX_new()) == NULL || in chachapoly_new() 51 (ctx->header_evp = EVP_CIPHER_CTX_new()) == NULL) in chachapoly_new()
|
/freebsd/crypto/openssl/doc/life-cycles/ |
H A D | cipher.dot | 17 begin -> newed [label="EVP_CIPHER_CTX_new"]; 56 begin -> newed [label="EVP_CIPHER_CTX_new"];
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | crypto-evp.c | 44 key->ectx = EVP_CIPHER_CTX_new(); in _krb5_evp_schedule() 45 key->dctx = EVP_CIPHER_CTX_new(); in _krb5_evp_schedule()
|
H A D | crypto-arcfour.c | 179 ctx = EVP_CIPHER_CTX_new(); in ARCFOUR_subencrypt() 239 ctx = EVP_CIPHER_CTX_new(); in ARCFOUR_subdecrypt()
|
H A D | crypto-aes.c | 129 ctx = EVP_CIPHER_CTX_new(); /* ivec all zero */ in AES_PRF()
|
/freebsd/contrib/libfido2/src/ |
H A D | aes256.c | 33 if ((ctx = EVP_CIPHER_CTX_new()) == NULL || in aes256_cbc() 141 if ((ctx = EVP_CIPHER_CTX_new()) == NULL || in aes256_gcm()
|
/freebsd/contrib/libfido2/fuzz/ |
H A D | wrapped.sym | 39 EVP_CIPHER_CTX_new
|
/freebsd/crypto/openssl/demos/mac/ |
H A D | poly1305.c | 125 aesctx = EVP_CIPHER_CTX_new(); in main()
|
/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_pwri.c | 87 ctx = EVP_CIPHER_CTX_new(); in CMS_add0_recipient_password() 336 kekctx = EVP_CIPHER_CTX_new(); in ossl_cms_RecipientInfo_pwri_crypt()
|
/freebsd/crypto/openssl/crypto/modes/ |
H A D | siv128.c | 194 if ((ctx->cipher_ctx = EVP_CIPHER_CTX_new()) == NULL in ossl_siv128_init() 225 dest->cipher_ctx = EVP_CIPHER_CTX_new(); in ossl_siv128_copy_ctx()
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | bio_enc.c | 73 ctx->cipher = EVP_CIPHER_CTX_new(); in enc_new() 382 dctx->cipher = EVP_CIPHER_CTX_new(); in enc_ctrl()
|
/freebsd/contrib/bsnmp/lib/ |
H A D | snmpcrypto.c | 191 ctx = EVP_CIPHER_CTX_new(); in snmp_pdu_encrypt() 224 ctx = EVP_CIPHER_CTX_new(); in snmp_pdu_decrypt()
|
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | drbg_ctr.c | 537 ctr->ctx_ecb = EVP_CIPHER_CTX_new(); in drbg_ctr_init() 539 ctr->ctx_ctr = EVP_CIPHER_CTX_new(); in drbg_ctr_init() 566 ctr->ctx_df = EVP_CIPHER_CTX_new(); in drbg_ctr_init()
|