Home
last modified time | relevance | path

Searched refs:fctx (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/crypto/openssh/
H A Dmux.c597 struct mux_channel_confirm_ctx *fctx = ctxt; in mux_confirm_remote_forward() local
605 if ((c = channel_by_id(ssh, fctx->cid)) == NULL) { in mux_confirm_remote_forward()
612 if (fctx->fid >= options.num_remote_forwards || in mux_confirm_remote_forward()
618 rfwd = &options.remote_forwards[fctx->fid]; in mux_confirm_remote_forward()
645 reply_ok(out, fctx->rid); in mux_confirm_remote_forward()
818 struct mux_channel_confirm_ctx *fctx; in mux_master_process_open_fwd() local
824 fctx = xcalloc(1, sizeof(*fctx)); in mux_master_process_open_fwd()
825 fctx->cid = c->self; in mux_master_process_open_fwd()
826 fctx->rid = rid; in mux_master_process_open_fwd()
827 fctx->fid = options.num_remote_forwards - 1; in mux_master_process_open_fwd()
[all …]
/freebsd-14.2/contrib/wpa/src/crypto/
H A Dcrypto_openssl.c1164 EVP_PKEY_CTX *fctx; in dh5_init_fixed()
1166 fctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL); in dh5_init_fixed()
1170 if (!fctx || !priv_key || !pub_key || !bld || in dh5_init_fixed()
1178 EVP_PKEY_fromdata_init(fctx) != 1 || in dh5_init_fixed()
1179 EVP_PKEY_fromdata(fctx, &pkey, EVP_PKEY_KEYPAIR, params) != 1) { in dh5_init_fixed()
1188 EVP_PKEY_CTX_free(fctx); in dh5_init_fixed()