Searched refs:ctx (Results 201 - 225 of 1406) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dsha256.c36 SHA256_CTX ctx; local
39 SHA256_Init(&ctx);
40 SHA256_Update(&ctx, buf, size);
41 SHA256_Final((unsigned char *)&tmp, &ctx);
/freebsd-10.0-release/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_begemot.c40 op_begemot(struct snmp_context *ctx, struct snmp_value *value, argument
85 ctx->scratch->int1 = storage_tbl_refresh;
90 ctx->scratch->int1 = fs_tbl_refresh;
95 ctx->scratch->int1 = disk_storage_tbl_refresh;
100 ctx->scratch->int1 = network_tbl_refresh;
105 ctx->scratch->int1 = swins_tbl_refresh;
110 ctx->scratch->int1 = swrun_tbl_refresh;
115 return (string_save(value, ctx, -1, &pkg_dir));
131 string_commit(ctx);
140 storage_tbl_refresh = ctx
[all...]
/freebsd-10.0-release/contrib/ofed/libmthca/src/
H A Ddoorbell.h38 static inline void mthca_write64(uint32_t val[2], struct mthca_context *ctx, int offset) argument
49 : "r" (xmmsave), "r" (val), "r" (ctx->uar + offset)
78 static inline void mthca_write64(uint32_t val[2], struct mthca_context *ctx, int offset) argument
80 *(volatile uint64_t *) (ctx->uar + offset) = MTHCA_PAIR_TO_64(val);
90 static inline void mthca_write64(uint32_t val[2], struct mthca_context *ctx, int offset) argument
92 pthread_spin_lock(&ctx->uar_lock);
93 *(volatile uint32_t *) (ctx->uar + offset) = val[0];
94 *(volatile uint32_t *) (ctx->uar + offset + 4) = val[1];
95 pthread_spin_unlock(&ctx->uar_lock);
/freebsd-10.0-release/contrib/subversion/subversion/svn/
H A Ddelete-cmd.c49 svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
56 ctx, FALSE, pool));
66 ctx->log_msg_func3 = NULL;
77 SVN_ERR(svn_cl__make_log_msg_baton(&(ctx->log_msg_baton3), opt_state,
78 NULL, ctx->config, pool));
87 NULL, ctx, pool);
91 if (ctx->log_msg_func3)
92 SVN_ERR(svn_cl__cleanup_log_msg(ctx->log_msg_baton3, err, pool));
47 svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx; local
H A Dmkdir-cmd.c50 svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx;
56 ctx, FALSE, pool));
65 ctx->log_msg_func3 = NULL;
76 SVN_ERR(svn_cl__make_log_msg_baton(&(ctx->log_msg_baton3), opt_state,
77 NULL, ctx->config, pool));
85 NULL, ctx, pool);
87 if (ctx->log_msg_func3)
88 err = svn_cl__cleanup_log_msg(ctx->log_msg_baton3, err, pool);
48 svn_client_ctx_t *ctx = ((svn_cl__cmd_baton_t *) baton)->ctx; local
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/krb5/
H A Daeap.c48 const gsskrb5_ctx ctx = (const gsskrb5_ctx) context_handle;
53 if (ctx->more_flags & IS_CFX)
54 return _gssapi_wrap_cfx_iov(minor_status, ctx, context,
69 const gsskrb5_ctx ctx = (const gsskrb5_ctx) context_handle;
74 if (ctx->more_flags & IS_CFX)
75 return _gssapi_unwrap_cfx_iov(minor_status, ctx, context,
91 const gsskrb5_ctx ctx = (const gsskrb5_ctx) context_handle; local
96 if (ctx->more_flags & IS_CFX)
97 return _gssapi_wrap_iov_length_cfx(minor_status, ctx, context,
H A Dinit_sec_context.c110 gsskrb5_ctx ctx; local
114 ctx = malloc(sizeof(*ctx));
115 if (ctx == NULL) {
119 ctx->auth_context = NULL;
120 ctx->deleg_auth_context = NULL;
121 ctx->source = NULL;
122 ctx->target = NULL;
123 ctx->kcred = NULL;
124 ctx
202 gsskrb5_get_creds( OM_uint32 * minor_status, krb5_context context, krb5_ccache ccache, gsskrb5_ctx ctx, const gss_name_t target_name, int use_dns, OM_uint32 time_req, OM_uint32 * time_rec) argument
273 gsskrb5_initiator_ready( OM_uint32 * minor_status, gsskrb5_ctx ctx, krb5_context context) argument
376 init_auth(OM_uint32 * minor_status, gsskrb5_cred cred, gsskrb5_ctx ctx, krb5_context context, gss_name_t name, const gss_OID mech_type, OM_uint32 req_flags, OM_uint32 time_req, const gss_buffer_t input_token, gss_OID * actual_mech_type, gss_buffer_t output_token, OM_uint32 * ret_flags, OM_uint32 * time_rec ) argument
509 init_auth_restart(OM_uint32 * minor_status, gsskrb5_cred cred, gsskrb5_ctx ctx, krb5_context context, OM_uint32 req_flags, const gss_channel_bindings_t input_chan_bindings, const gss_buffer_t input_token, gss_OID * actual_mech_type, gss_buffer_t output_token, OM_uint32 * ret_flags, OM_uint32 * time_rec ) argument
702 handle_error_packet(krb5_context context, gsskrb5_ctx ctx, krb5_data indata) argument
741 repl_mutual(OM_uint32 * minor_status, gsskrb5_ctx ctx, krb5_context context, const gss_OID mech_type, OM_uint32 req_flags, OM_uint32 time_req, const gss_channel_bindings_t input_chan_bindings, const gss_buffer_t input_token, gss_OID * actual_mech_type, gss_buffer_t output_token, OM_uint32 * ret_flags, OM_uint32 * time_rec ) argument
884 gsskrb5_ctx ctx; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/evp/
H A De_rc4.c77 #define data(ctx) ((EVP_RC4_KEY *)(ctx)->cipher_data)
79 static int rc4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
81 static int rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
123 static int rc4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, argument
126 RC4_set_key(&data(ctx)->ks,EVP_CIPHER_CTX_key_length(ctx),
131 static int rc4_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, argument
134 RC4(&data(ctx)->ks,inl,in,out);
/freebsd-10.0-release/crypto/openssl/crypto/hmac/
H A Dhmac.h88 void HMAC_CTX_init(HMAC_CTX *ctx);
89 void HMAC_CTX_cleanup(HMAC_CTX *ctx);
91 #define HMAC_cleanup(ctx) HMAC_CTX_cleanup(ctx) /* deprecated */
93 int HMAC_Init(HMAC_CTX *ctx, const void *key, int len,
95 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len,
97 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len);
98 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);
104 void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags);
/freebsd-10.0-release/contrib/serf/auth/
H A Dauth_spnego_gss.c47 serf__spnego_context_t *ctx,
60 ctx->gss_mech,
68 ctx->gss_mech,
84 serf__spnego_context_t *ctx = data; local
86 if (ctx->gss_ctx != GSS_C_NO_CONTEXT) {
89 gss_maj_stat = gss_delete_sec_context(&gss_min_stat, &ctx->gss_ctx,
92 log_error(AUTH_VERBOSE, __FILE__, ctx,
119 serf__spnego_context_t *ctx; local
121 ctx = apr_pcalloc(result_pool, sizeof(*ctx));
46 log_error(int verbose_flag, const char *filename, serf__spnego_context_t *ctx, OM_uint32 err_maj_stat, OM_uint32 err_min_stat, const char *msg) argument
136 serf__spnego_reset_sec_context(serf__spnego_context_t *ctx) argument
149 serf__spnego_init_sec_context(serf__spnego_context_t *ctx, const char *service, const char *hostname, serf__spnego_buffer_t *input_buf, serf__spnego_buffer_t *output_buf, apr_pool_t *result_pool, apr_pool_t *scratch_pool ) argument
[all...]
/freebsd-10.0-release/contrib/smbfs/smbutil/
H A Dlogin.c55 struct smb_ctx sctx, *ctx = &sctx; local
60 if (smb_ctx_init(ctx, argc, argv, SMBL_VC, SMBL_SHARE, SMB_ST_ANY) != 0)
62 if (smb_ctx_readrc(ctx) != 0)
69 error = smb_ctx_opt(ctx, opt, optarg);
85 if (smb_ctx_resolve(ctx) != 0)
87 level = ctx->ct_parsedlevel;
88 error = smb_ctx_lookup(ctx, level, 0);
93 error = smb_ctx_lookup(ctx, level, SMBLK_CREATE);
95 smb_error("could not login to server %s", error, ctx->ct_ssn.ioc_srvname);
109 error = smb_ctx_setflags(ctx, leve
123 struct smb_ctx sctx, *ctx = &sctx; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/dh/
H A Ddh_pmeth.c80 static int pkey_dh_init(EVP_PKEY_CTX *ctx) argument
90 ctx->data = dctx;
91 ctx->keygen_info = dctx->gentmp;
92 ctx->keygen_info_count = 2;
110 static void pkey_dh_cleanup(EVP_PKEY_CTX *ctx) argument
112 DH_PKEY_CTX *dctx = ctx->data;
117 static int pkey_dh_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) argument
119 DH_PKEY_CTX *dctx = ctx->data;
143 static int pkey_dh_ctrl_str(EVP_PKEY_CTX *ctx, argument
150 return EVP_PKEY_CTX_set_dh_paramgen_prime_len(ctx, le
161 pkey_dh_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) argument
186 pkey_dh_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) argument
204 pkey_dh_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen) argument
[all...]
/freebsd-10.0-release/crypto/openssl/ssl/
H A Dtls_srp.c66 int SSL_CTX_SRP_CTX_free(struct ssl_ctx_st *ctx) argument
68 if (ctx == NULL)
70 OPENSSL_free(ctx->srp_ctx.login);
71 BN_free(ctx->srp_ctx.N);
72 BN_free(ctx->srp_ctx.g);
73 BN_free(ctx->srp_ctx.s);
74 BN_free(ctx->srp_ctx.B);
75 BN_free(ctx->srp_ctx.A);
76 BN_free(ctx->srp_ctx.a);
77 BN_free(ctx
132 SSL_CTX *ctx; local
198 SSL_CTX_SRP_CTX_init(struct ssl_ctx_st *ctx) argument
493 SSL_CTX_set_srp_username(SSL_CTX *ctx,char *name) argument
498 SSL_CTX_set_srp_password(SSL_CTX *ctx,char *password) argument
503 SSL_CTX_set_srp_strength(SSL_CTX *ctx, int strength) argument
509 SSL_CTX_set_srp_verify_param_callback(SSL_CTX *ctx, int (*cb)(SSL *,void *)) argument
515 SSL_CTX_set_srp_cb_arg(SSL_CTX *ctx, void *arg) argument
520 SSL_CTX_set_srp_username_callback(SSL_CTX *ctx, int (*cb)(SSL *,int *,void *)) argument
527 SSL_CTX_set_srp_client_pwd_callback(SSL_CTX *ctx, char *(*cb)(SSL *,void *)) argument
[all...]
/freebsd-10.0-release/contrib/sendmail/libmilter/
H A Dengine.c236 ** ctx -- context structure
243 mi_engine(ctx)
244 SMFICTX_PTR ctx;
263 arg.a_ctx = ctx;
264 sd = ctx->ctx_sd;
265 fi_abort = ctx->ctx_smfi->xxfi_abort;
267 curstate = ctx->ctx_state;
270 mi_clr_macros(ctx, 0);
271 fix_stm(ctx);
274 mi_clr_macros(ctx,
839 SMFICTX_PTR ctx; local
[all...]
H A Dsmfi.c27 ** ctx -- Opaque context structure
38 smfi_header(ctx, cmd, hdridx, headerf, headerv)
39 SMFICTX *ctx;
53 timeout.tv_sec = ctx->ctx_timeout;
72 r = mi_wr_cmd(ctx->ctx_sd, &timeout, cmd, buf, len);
81 ** ctx -- Opaque context structure
90 smfi_addheader(ctx, headerf, headerv)
91 SMFICTX *ctx;
95 if (!mi_sendok(ctx, SMFIF_ADDHDRS))
98 return smfi_header(ctx, SMFIR_ADDHEADE
637 smfi_setmlreply(SMFICTX *ctx, const char *rcode, const char *xcode, ...) argument
[all...]
/freebsd-10.0-release/contrib/unbound/libunbound/
H A Dcontext.c54 context_finalize(struct ub_ctx* ctx) argument
56 struct config_file* cfg = ctx->env->cfg;
58 if(ctx->logfile_override)
59 log_file(ctx->log_out);
62 if(!modstack_setup(&ctx->mods, cfg->module_conf, ctx->env))
64 ctx->local_zones = local_zones_create();
65 if(!ctx->local_zones)
67 if(!local_zones_apply_cfg(ctx->local_zones, cfg))
69 if(!ctx
113 find_id(struct ub_ctx* ctx, int* id) argument
127 context_new(struct ub_ctx* ctx, const char* name, int rrtype, int rrclass, ub_callback_t cb, void* cbarg) argument
167 context_obtain_alloc(struct ub_ctx* ctx, int locking) argument
193 context_release_alloc(struct ub_ctx* ctx, struct alloc_cache* alloc, int locking) argument
232 context_deserialize_new_query(struct ub_ctx* ctx, uint8_t* p, uint32_t len) argument
265 context_lookup_new_query(struct ub_ctx* ctx, uint8_t* p, uint32_t len) argument
316 context_deserialize_answer(struct ub_ctx* ctx, uint8_t* p, uint32_t len, int* err) argument
370 context_deserialize_cancel(struct ub_ctx* ctx, uint8_t* p, uint32_t len) argument
[all...]
/freebsd-10.0-release/contrib/serf/buckets/
H A Dssl_buckets.c85 * |- 2. Try to read from ctx->stream [REQUEST bucket]
92 * |- 5. If fails, place read data back in ctx->stream
105 * |- 2. Try to read from ctx->stream [SOCKET bucket]
152 SSL_CTX *ctx; member in struct:serf_ssl_context_t
248 serf_ssl_context_t *ctx = bio->ptr; local
256 if (ctx->encrypt.status == SERF_ERROR_WAIT_CONN
257 && BIO_should_read(ctx->bio)) {
260 BIO_should_retry(ctx->bio), BIO_should_read(ctx->bio),
261 BIO_get_retry_flags(ctx
292 serf_ssl_context_t *ctx = bio->ptr; local
434 serf_ssl_context_t *ctx; local
591 serf_ssl_context_t *ctx = baton; local
704 serf_ssl_context_t *ctx = baton; local
1023 serf_ssl_context_t *ctx = SSL_get_app_data(ssl); local
1299 ssl_context_t *ctx; local
1374 ssl_context_t *ctx; local
1395 ssl_context_t *ctx = bucket->data; local
1406 ssl_context_t *ctx; local
1446 ssl_context_t *ctx = bucket->data; local
1672 ssl_context_t *ctx = bucket->data; local
1683 ssl_context_t *ctx = bucket->data; local
1692 ssl_context_t *ctx = bucket->data; local
1730 ssl_context_t *ctx = bucket->data; local
1740 ssl_context_t *ctx = bucket->data; local
1749 ssl_context_t *ctx = bucket->data; local
[all...]
/freebsd-10.0-release/contrib/ofed/libibverbs/examples/
H A Drc_pingpong.c80 static int pp_connect_ctx(struct pingpong_context *ctx, int port, int my_psn, argument
106 if (ibv_modify_qp(ctx->qp, &attr,
124 if (ibv_modify_qp(ctx->qp, &attr,
209 static struct pingpong_dest *pp_server_exch_dest(struct pingpong_context *ctx, argument
283 if (pp_connect_ctx(ctx, ib_port, my_dest->psn, mtu, sl, rem_dest, sgid_idx)) {
313 struct pingpong_context *ctx; local
315 ctx = calloc(1, sizeof *ctx);
316 if (!ctx)
319 ctx
406 pp_close_ctx(struct pingpong_context *ctx) argument
446 pp_post_recv(struct pingpong_context *ctx, int n) argument
468 pp_post_send(struct pingpong_context *ctx) argument
510 struct pingpong_context *ctx; local
[all...]
H A Duc_pingpong.c79 static int pp_connect_ctx(struct pingpong_context *ctx, int port, int my_psn, argument
104 if (ibv_modify_qp(ctx->qp, &attr,
116 if (ibv_modify_qp(ctx->qp, &attr,
197 static struct pingpong_dest *pp_server_exch_dest(struct pingpong_context *ctx, argument
271 if (pp_connect_ctx(ctx, ib_port, my_dest->psn, mtu, sl, rem_dest, sgid_idx)) {
298 struct pingpong_context *ctx; local
300 ctx = calloc(1, sizeof *ctx);
301 if (!ctx)
304 ctx
391 pp_close_ctx(struct pingpong_context *ctx) argument
431 pp_post_recv(struct pingpong_context *ctx, int n) argument
453 pp_post_send(struct pingpong_context *ctx) argument
495 struct pingpong_context *ctx; local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dswitch.c101 svn_client_ctx_t *ctx,
120 svn_config_t *cfg = ctx->config
121 ? svn_hash_gets(ctx->config, SVN_CONFIG_CATEGORY_CONFIG)
147 SVN_ERR(svn_wc__node_has_working(&has_working, ctx->wc_ctx, local_abspath,
173 SVN_ERR(svn_wc__node_get_url(&anchor_url, ctx->wc_ctx, anchor_abspath,
187 SVN_ERR(svn_wc_exclude(ctx->wc_ctx,
189 ctx->cancel_func, ctx->cancel_baton,
190 ctx->notify_func2, ctx
86 switch_internal(svn_revnum_t *result_rev, apr_hash_t *conflicted_paths, const char *local_abspath, const char *anchor_abspath, const char *switch_url, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_depth_t depth, svn_boolean_t depth_is_sticky, svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, svn_boolean_t ignore_ancestry, svn_boolean_t *timestamp_sleep, svn_client_ctx_t *ctx, apr_pool_t *pool) argument
396 svn_client__switch_internal(svn_revnum_t *result_rev, const char *path, const char *switch_url, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_depth_t depth, svn_boolean_t depth_is_sticky, svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, svn_boolean_t ignore_ancestry, svn_boolean_t *timestamp_sleep, svn_client_ctx_t *ctx, apr_pool_t *pool) argument
455 svn_client_switch3(svn_revnum_t *result_rev, const char *path, const char *switch_url, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_depth_t depth, svn_boolean_t depth_is_sticky, svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, svn_boolean_t ignore_ancestry, svn_client_ctx_t *ctx, apr_pool_t *pool) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_mod.c119 int BN_mod(BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx)
121 return(BN_div(NULL,rem,m,d,ctx));
127 int BN_nnmod(BIGNUM *r, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx) argument
132 if (!(BN_mod(r,m,d,ctx)))
141 int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx) argument
144 return BN_nnmod(r, r, m, ctx);
159 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx) argument
162 return BN_nnmod(r, r, m, ctx);
179 BN_CTX *ctx)
188 BN_CTX_start(ctx);
178 BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, BN_CTX *ctx) argument
203 BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) argument
211 BN_mod_lshift1(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) argument
231 BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m, BN_CTX *ctx) argument
[all...]
H A Dbn_prime.c130 const BIGNUM *a1_odd, int k, BN_CTX *ctx, BN_MONT_CTX *mont);
133 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
135 const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx);
165 BN_CTX *ctx; local
168 ctx=BN_CTX_new();
169 if (ctx == NULL) goto err;
170 BN_CTX_start(ctx);
171 t = BN_CTX_get(ctx);
183 if (!probable_prime_dh_safe(ret,bits,add,rem,ctx))
188 if (!probable_prime_dh(ret,bits,add,rem,ctx))
248 BN_CTX *ctx = NULL; local
352 witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1, const BIGNUM *a1_odd, int k, BN_CTX *ctx, BN_MONT_CTX *mont) argument
406 probable_prime_dh(BIGNUM *rnd, int bits, const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx) argument
444 probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd, const BIGNUM *rem, BN_CTX *ctx) argument
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/ec/
H A Dec2_mult.c84 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, BN_CTX *ctx) argument
89 /* Since Mdouble is static we can guarantee that ctx != NULL. */
90 BN_CTX_start(ctx);
91 t1 = BN_CTX_get(ctx);
94 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
95 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
96 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
97 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
98 if (!group->meth->field_sqr(group, t1, t1, ctx)) goto err;
99 if (!group->meth->field_mul(group, t1, &group->b, t1, ctx)) got
115 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
152 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
221 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
322 ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
385 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/hx509/
H A Dprint.c45 void *ctx; member in struct:hx509_validate_ctx_data
88 * @param ctx the context to the print function. If the ctx is NULL,
97 hx509_print_stdout(void *ctx, const char *fmt, va_list va) argument
99 FILE *f = ctx;
106 print_func(hx509_vprint_func func, void *ctx, const char *fmt, ...) argument
110 (*func)(ctx, fmt, va);
137 * @param ctx context variable to hx509_vprint_func function.
143 hx509_oid_print(const heim_oid *oid, hx509_vprint_func func, void *ctx) argument
147 print_func(func, ctx, "
163 hx509_bitstring_print(const heim_bit_string *b, hx509_vprint_func func, void *ctx) argument
219 hx509_validate_ctx ctx = c; local
226 validate_print(hx509_validate_ctx ctx, int flags, const char *fmt, ...) argument
243 check_Null(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
277 check_subjectKeyIdentifier(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
325 check_authorityKeyIdentifier(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
365 check_extKeyUsage(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
416 check_pkinit_san(hx509_validate_ctx ctx, heim_any *a) argument
451 check_utf8_string_san(hx509_validate_ctx ctx, heim_any *a) argument
471 check_altnull(hx509_validate_ctx ctx, heim_any *a) argument
477 check_CRLDistributionPoints(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
561 check_altName(hx509_validate_ctx ctx, struct cert_status *status, const char *name, enum critical_flag cf, const Extension *e) argument
640 check_subjectAltName(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
650 check_issuerAltName(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
661 check_basicConstraints(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
704 check_proxyCertInfo(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
715 check_authorityInfoAccess(hx509_validate_ctx ctx, struct cert_status *status, enum critical_flag cf, const Extension *e) argument
811 hx509_validate_ctx_init(hx509_context context, hx509_validate_ctx *ctx) argument
833 hx509_validate_ctx_set_print(hx509_validate_ctx ctx, hx509_vprint_func func, void *c) argument
854 hx509_validate_ctx_add_flags(hx509_validate_ctx ctx, int flags) argument
868 hx509_validate_ctx_free(hx509_validate_ctx ctx) argument
886 hx509_validate_cert(hx509_context context, hx509_validate_ctx ctx, hx509_cert cert) argument
[all...]
/freebsd-10.0-release/crypto/openssl/engines/ccgost/
H A Dgost89.h46 void gost_enc(gost_ctx *ctx, const byte *clear,byte *cipher, int blocks);
48 void gost_dec(gost_ctx *ctx, const byte *cipher,byte *clear, int blocks);
50 void gost_enc_cfb(gost_ctx *ctx,const byte *iv,const byte *clear,byte *cipher,int blocks);
52 void gost_dec_cfb(gost_ctx *ctx,const byte *iv,const byte *cipher,byte *clear,int blocks);
59 void gost_key(gost_ctx *ctx, const byte *key);
61 void gost_get_key(gost_ctx *ctx, byte *key);
63 void gost_init(gost_ctx *ctx, const gost_subst_block *subst_block);
65 void gost_destroy(gost_ctx *ctx);
69 int gost_mac(gost_ctx *ctx,int hmac_len,const unsigned char *data,
73 int gost_mac_iv(gost_ctx *ctx,in
[all...]

Completed in 143 milliseconds

1234567891011>>