Home
last modified time | relevance | path

Searched refs:inctx (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/heimdal/lib/krb5/
H A Drd_req.c844 krb5_rd_req_in_ctx inctx, in krb5_rd_req_ctx() argument
889 if (inctx && inctx->keytab) in krb5_rd_req_ctx()
890 id = inctx->keytab; in krb5_rd_req_ctx()
898 } else if(inctx && inctx->keyblock){ in krb5_rd_req_ctx()
900 inctx->keyblock, in krb5_rd_req_ctx()
1036 if (inctx == NULL || inctx->check_pac) { in krb5_rd_req_ctx()
/freebsd/crypto/openssl/providers/implementations/digests/
H A Dblake2_prov.c140 …struct blake##variant##_md_data_st *inctx, *outctx; …
143inctx = (struct blake##variant##_md_data_st *)vinctx; …
144 …*outctx = *inctx; …
H A Dsha3_prov.c560 KECCAK1600_CTX *inctx = (KECCAK1600_CTX *)vinctx; in keccak_copyctx() local
562 *outctx = *inctx; in keccak_copyctx()
/freebsd/crypto/openssl/providers/implementations/include/prov/
H A Ddigestcommon.h78 CTX *inctx = (CTX *)vinctx; \
79 *outctx = *inctx; \
/freebsd/crypto/openssl/test/
H A Devp_extra_test2.c3395 EVP_MD_CTX *inctx = NULL, *outctx = NULL; in test_evp_md_ctx_copy2() local
3402 inctx = EVP_MD_CTX_new(); in test_evp_md_ctx_copy2()
3405 if (!TEST_ptr(inctx) || !TEST_ptr(outctx)) in test_evp_md_ctx_copy2()
3409 if (!TEST_true(EVP_DigestInit_ex2(inctx, md, NULL))) in test_evp_md_ctx_copy2()
3419 ret = TEST_true(EVP_MD_CTX_copy_ex(outctx, inctx)) in test_evp_md_ctx_copy2()
3424 EVP_MD_CTX_free(inctx); in test_evp_md_ctx_copy2()
/freebsd/crypto/openssl/apps/
H A Ds_server.c489 X509_STORE_CTX *inctx = NULL; in get_ocsp_resp_from_responder() local
537 inctx = X509_STORE_CTX_new(); in get_ocsp_resp_from_responder()
538 if (inctx == NULL) in get_ocsp_resp_from_responder()
540 if (!X509_STORE_CTX_init(inctx, SSL_CTX_get_cert_store(ssl_ctx), in get_ocsp_resp_from_responder()
543 obj = X509_STORE_CTX_get_obj_by_subject(inctx, X509_LU_X509, iname); in get_ocsp_resp_from_responder()
591 X509_STORE_CTX_free(inctx); in get_ocsp_resp_from_responder()
/freebsd/crypto/openssl/include/openssl/
H A Dcore_dispatch.h335 OSSL_CORE_MAKE_FUNC(void, digest_copyctx, (void *outctx, void *inctx))