Searched refs:fctx (Results 1 – 5 of 5) sorted by relevance
| /src/crypto/krb5/src/lib/krb5/krb/ |
| H A D | authdata_dec.c | 88 grow_find_authdata(krb5_context context, struct find_authdata_context *fctx, in grow_find_authdata() argument 92 if (fctx->length == fctx->space) { in grow_find_authdata() 94 if (fctx->space >= 256) { in grow_find_authdata() 99 new = realloc(fctx->out, in grow_find_authdata() 100 sizeof (krb5_authdata *)*(2*fctx->space+1)); in grow_find_authdata() 103 fctx->out = new; in grow_find_authdata() 104 fctx->space *=2; in grow_find_authdata() 106 fctx->out[fctx->length+1] = NULL; in grow_find_authdata() 108 &fctx->out[fctx->length]); in grow_find_authdata() 110 fctx->length++; in grow_find_authdata() [all …]
|
| /src/crypto/openssl/test/radix/ |
| H A D | terp.c | 77 fctx->spin_again = 1; \ 84 fctx->skip_rest = 1; \ 125 #define F_PUSH(v) TERP_STK_PUSH(fctx->terp, (v)) 126 #define F_POP(v) TERP_STK_POP(fctx->terp, (v)) 127 #define F_POP2(a, b) TERP_STK_POP2(fctx->terp, (a), (b)) 129 typedef int (*helper_func_t)(FUNC_CTX *fctx); 131 #define DEF_FUNC(name) ossl_unused static int name(FUNC_CTX *fctx) 538 FUNC_CTX fctx; member 555 terp->fctx.terp = terp; in TERP_init() 556 terp->fctx.spin_again = 0; in TERP_init() [all …]
|
| H A D | quic_bindings.c | 670 static int expect_slot_ssl(FUNC_CTX *fctx, size_t idx, SSL **p_ssl) in expect_slot_ssl() argument 682 if (!TEST_true(expect_slot_ssl(fctx, (idx), &(ssl)))) \
|
| /src/crypto/openssh/ |
| H A D | mux.c | 596 struct mux_channel_confirm_ctx *fctx = ctxt; in mux_confirm_remote_forward() local 604 if ((c = channel_by_id(ssh, fctx->cid)) == NULL) { in mux_confirm_remote_forward() 611 if (fctx->fid >= options.num_remote_forwards || in mux_confirm_remote_forward() 612 (options.remote_forwards[fctx->fid].connect_path == NULL && in mux_confirm_remote_forward() 613 options.remote_forwards[fctx->fid].connect_host == NULL)) { in mux_confirm_remote_forward() 614 xasprintf(&failmsg, "unknown forwarding id %d", fctx->fid); in mux_confirm_remote_forward() 617 rfwd = &options.remote_forwards[fctx->fid]; in mux_confirm_remote_forward() 637 (r = sshbuf_put_u32(out, fctx->rid)) != 0 || in mux_confirm_remote_forward() 644 reply_ok(out, fctx->rid); in mux_confirm_remote_forward() 670 reply_error(out, MUX_S_FAILURE, fctx->rid, failmsg); in mux_confirm_remote_forward() [all …]
|
| /src/contrib/wpa/src/crypto/ |
| H A D | crypto_openssl.c | 1164 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()
|