Searched refs:ictx (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_auth/hmacsha256/
H A Dauth_hmacsha256.c45 crypto_hash_sha256_init(&state->ictx);
46 crypto_hash_sha256_update(&state->ictx, key, keylen);
47 crypto_hash_sha256_final(&state->ictx, khash);
51 crypto_hash_sha256_init(&state->ictx);
56 crypto_hash_sha256_update(&state->ictx, pad, 64);
75 crypto_hash_sha256_update(&state->ictx, in, inlen);
86 crypto_hash_sha256_final(&state->ictx, ihash);
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_auth/hmacsha512/
H A Dauth_hmacsha512.c45 crypto_hash_sha512_init(&state->ictx);
46 crypto_hash_sha512_update(&state->ictx, key, keylen);
47 crypto_hash_sha512_final(&state->ictx, khash);
51 crypto_hash_sha512_init(&state->ictx);
56 crypto_hash_sha512_update(&state->ictx, pad, 128);
75 crypto_hash_sha512_update(&state->ictx, in, inlen);
86 crypto_hash_sha512_final(&state->ictx, ihash);
/freebsd-13-stable/sys/contrib/openzfs/module/icp/core/
H A Dkcf_sched.c121 * ictx - Framework private context pointer
126 kcf_areqnode_alloc(kcf_provider_desc_t *pd, kcf_context_t *ictx, argument
139 arptr->an_context = ictx;
153 if (ictx == NULL)
156 KCF_CONTEXT_REFHOLD(ictx);
160 mutex_enter(&ictx->kc_in_use_lock);
162 if ((areq = ictx->kc_req_chain_last) == NULL) {
164 ictx->kc_req_chain_last =
165 ictx->kc_req_chain_first = arptr;
167 ASSERT(ictx
295 kcf_context_t *ictx; local
494 kcf_context_t *ictx; local
876 kcf_removereq_in_ctxchain(kcf_context_t *ictx, kcf_areq_node_t *areq) argument
1180 kcf_context_t *ictx; local
1387 kcf_context_t *ictx; local
1470 kcf_context_t *ictx; local
[all...]
/freebsd-13-stable/crypto/heimdal/lib/gssapi/ntlm/
H A Ddelete_sec_context.c49 (*ctx->server->nsi_destroy)(minor_status, ctx->ictx);
H A Daccept_sec_context.c56 maj_stat = (*(*ctx)->server->nsi_init)(minor_status, &(*ctx)->ictx);
121 major_status = (*ctx->server->nsi_probe)(minor_status, ctx->ictx, NULL);
150 ctx->ictx,
194 ctx->ictx,
H A Dacquire_cred.c67 maj_stat = (*ctx->server->nsi_probe)(min_stat, ctx->ictx,
H A Dntlm.h111 void *ictx; member in struct:__anon6730
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_auth_hmacsha256.h39 crypto_hash_sha256_state ictx; member in struct:crypto_auth_hmacsha256_state
H A Dcrypto_auth_hmacsha512.h39 crypto_hash_sha512_state ictx; member in struct:crypto_auth_hmacsha512_state
/freebsd-13-stable/crypto/openssh/
H A Dhmac.c29 struct ssh_digest_ctx *ictx; member in struct:ssh_hmac_ctx
50 if ((ret->ictx = ssh_digest_start(alg)) == NULL ||
54 ret->buf_len = ssh_digest_blocksize(ret->ictx);
68 /* reset ictx and octx if no is key given */
78 if (ssh_digest_update(ctx->ictx, ctx->buf, ctx->buf_len) < 0)
86 /* start with ictx */
87 if (ssh_digest_copy_state(ctx->ictx, ctx->digest) < 0)
125 ssh_digest_free(ctx->ictx);
/freebsd-13-stable/sys/contrib/openzfs/module/icp/include/sys/crypto/
H A Dsched_impl.h309 #define KCF_CONTEXT_REFHOLD(ictx) { \
310 atomic_add_32(&(ictx)->kc_refcnt, 1); \
311 ASSERT((ictx)->kc_refcnt != 0); \
319 #define KCF_CONTEXT_REFRELE(ictx) { \
320 ASSERT((ictx)->kc_refcnt != 0); \
322 if (atomic_add_32_nv(&(ictx)->kc_refcnt, -1) == 0) \
323 kcf_free_context(ictx); \
/freebsd-13-stable/sys/crypto/openssl/
H A Dossl.c59 struct ossl_hash_context ictx; member in struct:ossl_session_hash
166 hmac_init_ipad(s->hash.axf, key, klen, &s->hash.ictx);
187 axf->Init(&s->hash.ictx);
224 ctx = s->hash.ictx;

Completed in 136 milliseconds