/netbsd/crypto/external/bsd/openssl/dist/crypto/pkcs12/ |
H A D | p12_decr.c | 47 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx)) in PKCS12_pbe_crypt_ex() 92 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx)) in PKCS12_pbe_crypt_ex()
|
/netbsd/crypto/external/bsd/openssl/dist/crypto/cms/ |
H A D | cms_enc.c | 105 if ((EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER)) { in ossl_cms_EncryptedContent_init_bio() 173 if ((EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER)) { in ossl_cms_EncryptedContent_init_bio()
|
H A D | cms_env.c | 1112 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx)) in cms_EnvelopedData_Decryption_init_bio() 1232 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx)) in ossl_cms_EnvelopedData_final()
|
H A D | cms_kari.c | 434 if ((EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_GET_WRAP_CIPHER) != 0) { in cms_wrap_init()
|
H A D | cms_smime.c | 636 cms = (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) in CMS_encrypt_ex()
|
/netbsd/crypto/external/bsd/openssl/dist/crypto/evp/ |
H A D | evp_lib.c | 104 } else if ((EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_CUSTOM_ASN1) == 0) { in evp_cipher_param_to_asn1_ex() 195 } else if ((EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_CUSTOM_ASN1) == 0) { in evp_cipher_asn1_to_param_ex() 470 unsigned long EVP_CIPHER_get_flags(const EVP_CIPHER *cipher) in EVP_CIPHER_get_flags() function 525 else if ((EVP_CIPHER_get_flags(ctx->cipher) in EVP_CIPHER_CTX_get_iv_length() 728 return EVP_CIPHER_get_flags(cipher) & EVP_CIPH_MODE; in EVP_CIPHER_get_mode()
|
H A D | evp_enc.c | 340 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx)) in evp_cipher_init_internal()
|
/netbsd/crypto/external/bsd/openssl/dist/test/ |
H A D | evp_libctx_test.c | 444 if (((EVP_CIPHER_get_flags(cipher) in test_cipher_reinit_partialupdate() 574 && TEST_int_eq(EVP_CIPHER_get_flags(aes_cipher) & EVP_CIPH_RAND_KEY, 0) in test_cipher_tdes_randkey() 576 && TEST_int_ne(EVP_CIPHER_get_flags(tdes_cipher) & EVP_CIPH_RAND_KEY, 0) in test_cipher_tdes_randkey()
|
H A D | evp_test.c | 583 if (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) in cipher_test_init() 819 || ((EVP_CIPHER_get_flags(expected->cipher) & EVP_CIPH_CUSTOM_IV) == 0 in cipher_test_enc() 995 || ((EVP_CIPHER_get_flags(expected->cipher) & EVP_CIPH_CUSTOM_IV) == 0 in cipher_test_enc() 1080 || ((EVP_CIPHER_get_flags(cdat->cipher) & EVP_CIPH_FLAG_CTS) != 0) in cipher_test_run()
|
/netbsd/crypto/external/bsd/openssl/dist/ssl/record/ |
H A D | ssl3_record.c | 487 && (EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(s->enc_read_ctx)) in ssl3_get_record() 1055 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ds)) in tls1_enc() 1068 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ds)) in tls1_enc() 1237 if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ds)) in tls1_enc() 1277 (EVP_CIPHER_get_flags(enc) in tls1_enc()
|
H A D | rec_layer_s3.c | 436 && (EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(s->enc_write_ctx)) in ssl3_write_bytes() 585 || (EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(s->enc_write_ctx)) in ssl3_write_bytes()
|
/netbsd/crypto/external/bsd/openssl/dist/ssl/ |
H A D | t1_enc.c | 149 if ((EVP_CIPHER_get_flags(ciph) & EVP_CIPH_FLAG_AEAD_CIPHER) == 0 in tls_provider_set_tls_params() 364 if (!(EVP_CIPHER_get_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER)) { in tls1_change_cipher_state() 423 if ((EVP_CIPHER_get_flags(c) & EVP_CIPH_FLAG_AEAD_CIPHER) in tls1_change_cipher_state()
|
H A D | ssl_ciph.c | 575 || (EVP_CIPHER_get_flags(*enc) & EVP_CIPH_FLAG_AEAD_CIPHER)) in ssl_cipher_get_evp()
|
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/ |
H A D | EVP_EncryptInit.pod | 46 EVP_CIPHER_get_flags, 178 unsigned long EVP_CIPHER_get_flags(const EVP_CIPHER *e); 219 #define EVP_CIPHER_flags EVP_CIPHER_get_flags 575 =item EVP_CIPHER_get_flags() 592 A deprecated macro calling C<EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx))>. 673 Use (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) to retrieve the 681 Use (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_CUSTOM_IV) to retrieve the 690 Use (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_CTS) to retrieve the 698 Use (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_TLS1_1_MULTIBLOCK) to retrieve the
|
/netbsd/crypto/external/bsd/openssl/dist/apps/ |
H A D | enc.c | 665 || (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) != 0 in show_ciphers()
|
H A D | speed.c | 1733 } else if (!(EVP_CIPHER_get_flags(evp_cipher) & in speed_main() 1745 } else if (!(EVP_CIPHER_get_flags(evp_cipher) & in speed_main() 2202 if (multiblock && (EVP_CIPHER_get_flags(evp_cipher) & in speed_main() 2213 } else if (aead && (EVP_CIPHER_get_flags(evp_cipher) & in speed_main()
|
/netbsd/crypto/external/bsd/openssl/dist/apps/lib/ |
H A D | opt.c | 415 flags = EVP_CIPHER_get_flags(c); in opt_cipher()
|
/netbsd/crypto/external/bsd/openssl/dist/include/openssl/ |
H A D | evp.h | 597 unsigned long EVP_CIPHER_get_flags(const EVP_CIPHER *cipher); 598 # define EVP_CIPHER_flags EVP_CIPHER_get_flags 646 # define EVP_CIPHER_CTX_flags(c) EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(c))
|
/netbsd/crypto/external/bsd/openssl/dist/ssl/statem/ |
H A D | statem_dtls.c | 135 && (EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(s->enc_write_ctx)) & in dtls1_do_write()
|
/netbsd/crypto/external/bsd/openssl/lib/libcrypto/ |
H A D | crypto.map | 1664 EVP_CIPHER_get_flags;
|
/netbsd/crypto/external/bsd/openssl/dist/util/ |
H A D | libcrypto.num | 200 EVP_CIPHER_get_flags 204 3_0_0 EXIST::FUNCTION:
|