Symbol: encap
crypto/openssl/crypto/evp/ctrl_params_translate.c
437
&& ctx->pctx->op.encap.algctx == NULL)
crypto/openssl/crypto/evp/kem.c
159
ctx->op.encap.kem = kem;
crypto/openssl/crypto/evp/kem.c
160
ctx->op.encap.algctx = kem->newctx(ossl_provider_ctx(kem->prov));
crypto/openssl/crypto/evp/kem.c
161
if (ctx->op.encap.algctx == NULL) {
crypto/openssl/crypto/evp/kem.c
170
ret = kem->auth_encapsulate_init(ctx->op.encap.algctx, provkey,
crypto/openssl/crypto/evp/kem.c
173
ret = kem->encapsulate_init(ctx->op.encap.algctx, provkey, params);
crypto/openssl/crypto/evp/kem.c
182
ret = kem->auth_decapsulate_init(ctx->op.encap.algctx, provkey,
crypto/openssl/crypto/evp/kem.c
185
ret = kem->decapsulate_init(ctx->op.encap.algctx, provkey, params);
crypto/openssl/crypto/evp/kem.c
236
if (ctx->op.encap.algctx == NULL) {
crypto/openssl/crypto/evp/kem.c
244
return ctx->op.encap.kem->encapsulate(ctx->op.encap.algctx,
crypto/openssl/crypto/evp/kem.c
275
if (ctx->op.encap.algctx == NULL) {
crypto/openssl/crypto/evp/kem.c
279
return ctx->op.encap.kem->decapsulate(ctx->op.encap.algctx,
crypto/openssl/crypto/evp/pmeth_lib.c
152
&& ctx->op.encap.algctx != NULL))
crypto/openssl/crypto/evp/pmeth_lib.c
1573
if (ctx->op.encap.kem != NULL)
crypto/openssl/crypto/evp/pmeth_lib.c
1574
return EVP_KEM_get0_provider(ctx->op.encap.kem);
crypto/openssl/crypto/evp/pmeth_lib.c
373
if (ctx->op.encap.algctx != NULL && ctx->op.encap.kem != NULL)
crypto/openssl/crypto/evp/pmeth_lib.c
374
ctx->op.encap.kem->freectx(ctx->op.encap.algctx);
crypto/openssl/crypto/evp/pmeth_lib.c
375
EVP_KEM_free(ctx->op.encap.kem);
crypto/openssl/crypto/evp/pmeth_lib.c
376
ctx->op.encap.algctx = NULL;
crypto/openssl/crypto/evp/pmeth_lib.c
377
ctx->op.encap.kem = NULL;
crypto/openssl/crypto/evp/pmeth_lib.c
552
if (pctx->op.encap.kem != NULL) {
crypto/openssl/crypto/evp/pmeth_lib.c
553
rctx->op.encap.kem = pctx->op.encap.kem;
crypto/openssl/crypto/evp/pmeth_lib.c
554
if (!EVP_KEM_up_ref(rctx->op.encap.kem))
crypto/openssl/crypto/evp/pmeth_lib.c
557
if (pctx->op.encap.algctx != NULL) {
crypto/openssl/crypto/evp/pmeth_lib.c
558
if (!ossl_assert(pctx->op.encap.kem != NULL))
crypto/openssl/crypto/evp/pmeth_lib.c
561
if (pctx->op.encap.kem->dupctx != NULL)
crypto/openssl/crypto/evp/pmeth_lib.c
562
rctx->op.encap.algctx
crypto/openssl/crypto/evp/pmeth_lib.c
563
= pctx->op.encap.kem->dupctx(pctx->op.encap.algctx);
crypto/openssl/crypto/evp/pmeth_lib.c
565
if (rctx->op.encap.algctx == NULL) {
crypto/openssl/crypto/evp/pmeth_lib.c
566
EVP_KEM_free(rctx->op.encap.kem);
crypto/openssl/crypto/evp/pmeth_lib.c
567
rctx->op.encap.kem = NULL;
crypto/openssl/crypto/evp/pmeth_lib.c
702
&& ctx->op.encap.kem != NULL
crypto/openssl/crypto/evp/pmeth_lib.c
703
&& ctx->op.encap.kem->set_ctx_params != NULL)
crypto/openssl/crypto/evp/pmeth_lib.c
704
return ctx->op.encap.kem->set_ctx_params(ctx->op.encap.algctx,
crypto/openssl/crypto/evp/pmeth_lib.c
737
&& ctx->op.encap.kem != NULL
crypto/openssl/crypto/evp/pmeth_lib.c
738
&& ctx->op.encap.kem->get_ctx_params != NULL)
crypto/openssl/crypto/evp/pmeth_lib.c
739
return ctx->op.encap.kem->get_ctx_params(ctx->op.encap.algctx,
crypto/openssl/crypto/evp/pmeth_lib.c
786
&& ctx->op.encap.kem != NULL
crypto/openssl/crypto/evp/pmeth_lib.c
787
&& ctx->op.encap.kem->gettable_ctx_params != NULL) {
crypto/openssl/crypto/evp/pmeth_lib.c
788
provctx = ossl_provider_ctx(EVP_KEM_get0_provider(ctx->op.encap.kem));
crypto/openssl/crypto/evp/pmeth_lib.c
789
return ctx->op.encap.kem->gettable_ctx_params(ctx->op.encap.algctx,
crypto/openssl/crypto/evp/pmeth_lib.c
837
&& ctx->op.encap.kem != NULL
crypto/openssl/crypto/evp/pmeth_lib.c
838
&& ctx->op.encap.kem->settable_ctx_params != NULL) {
crypto/openssl/crypto/evp/pmeth_lib.c
839
provctx = ossl_provider_ctx(EVP_KEM_get0_provider(ctx->op.encap.kem));
crypto/openssl/crypto/evp/pmeth_lib.c
840
return ctx->op.encap.kem->settable_ctx_params(ctx->op.encap.algctx,
crypto/openssl/crypto/ml_kem/ml_kem.c
2246
ret = encap(ctext, shared_secret, entropy, tmp, mdctx, key); \
crypto/openssl/include/crypto/evp.h
92
} encap;
crypto/openssl/test/evp_pkey_dhkem_test.c
405
int encap = ((tstid & 1) == 0);
crypto/openssl/test/evp_pkey_dhkem_test.c
410
TEST_note("%s %s", t->curve, encap ? "Encap" : "Decap");
crypto/openssl/test/evp_pkey_dhkem_test.c
417
if (encap) {
crypto/openssl/test/evp_pkey_dhkem_test.c
439
int encap = ((tstid & 1) == 0);
crypto/openssl/test/evp_pkey_dhkem_test.c
445
TEST_note("%s %s", t->curve, encap ? "Encap" : "Decap");
crypto/openssl/test/evp_pkey_dhkem_test.c
450
if (encap) {
crypto/openssl/test/evp_pkey_dhkem_test.c
619
int encap = ((tstid & 1) == 0);
crypto/openssl/test/evp_pkey_dhkem_test.c
622
TEST_note("%s %s", t->curve, encap ? "Encap" : "Decap");
crypto/openssl/test/evp_pkey_dhkem_test.c
632
if (encap) {
crypto/openssl/test/evp_pkey_dhkem_test.c
669
int encap = ((tstid & 1) == 0);
crypto/openssl/test/evp_pkey_dhkem_test.c
673
TEST_note("%s %s", t->curve, encap ? "Encap" : "Decap");
crypto/openssl/test/evp_pkey_dhkem_test.c
679
if (encap) {
sys/dev/ice/ice_flow.c
1533
#define ICE_FLOW_GEN_PROFID(hash, hdr, encap) \
sys/dev/ice/ice_flow.c
1536
(((u64)(encap) << ICE_FLOW_PROF_ENCAP_S) & \
sys/dev/mlx5/mlx5_accel/ipsec.h
106
u8 encap : 1;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec.c
208
attrs->encap = true;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
182
static void setup_fte_spi(struct mlx5_flow_spec *spec, u32 spi, bool encap)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
187
if (encap) {
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
400
if (attrs->encap)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
405
if (attrs->encap)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
413
if (attrs->encap)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
420
if (attrs->encap) {
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
448
if (attrs->encap)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
578
if (!attrs->encap)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
581
setup_fte_spi(spec, attrs->spi, attrs->encap);
sys/dev/sfxge/common/ef10_filter.c
969
__in boolean_t encap,
sys/dev/sfxge/common/ef10_filter.c
985
MCDI_IN_SET_DWORD(req, GET_PARSER_DISP_INFO_OUT_OP, encap ?
sys/net/if_vxlan.c
2479
csum_flags_to_inner_flags(uint32_t csum_flags_in, const uint32_t encap)
sys/net/if_vxlan.c
2481
uint32_t csum_flags = encap;
sys/netinet/in_gif.c
378
const struct encap_config encap;
sys/netinet/in_gif.c
382
.encap = {
sys/netinet/in_gif.c
392
.encap = {
sys/netinet/in_gif.c
403
.encap = {
sys/netinet/in_gif.c
427
&ipv4_encap_cfg[i].encap, NULL, M_WAITOK);
sys/netinet6/in6_gif.c
409
const struct encap_config encap;
sys/netinet6/in6_gif.c
414
.encap = {
sys/netinet6/in6_gif.c
425
.encap = {
sys/netinet6/in6_gif.c
434
.encap = {
sys/netinet6/in6_gif.c
458
&ipv6_encap_cfg[i].encap, NULL, M_WAITOK);
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
223
struct ib_flow_spec_list encap;
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
298
ret = flow_action_esp_get_encap(&esp_attr->encap, attrs);
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
302
esp_attr->hdr.encap = &esp_attr->encap;
sys/ofed/include/rdma/ib_verbs.h
1953
struct ib_flow_spec_list *encap;
usr.sbin/cxgbetool/cxgbetool.c
1125
encap = 1;