Home
last modified time | relevance | path

Searched refs:verify (Results 1 – 14 of 14) sorted by relevance

/xnu-11215/libkern/crypto/
H A Dcorecrypto_chacha20poly1305.c96 return fns()->verify(info(), ctx, tag); in chacha20poly1305_verify()
/xnu-11215/EXTERNAL_HEADERS/
H A DAssertMacros.h1338 #ifndef verify
1339 #define verify(assertion) __Verify(assertion) macro
/xnu-11215/bsd/nfs/gss/
H A Dgss_krb5_mech.c606 …ffer_t header, gss_buffer_t bp, gss_buffer_t trailer, uint8_t *mic, int *verify, int ikey, int rev… in krb5_mic() argument
610 int kdx = (verify == NULL) ? (reverse ? GSS_RCV : GSS_SND) : (reverse ? GSS_SND : GSS_RCV); in krb5_mic()
645 if (verify) { in krb5_mic()
646 *verify = (memcmp(mic, digest, ctx->digest_size) == 0); in krb5_mic()
657 …mbuf_t mbp, size_t offset, size_t len, gss_buffer_t trailer, uint8_t *mic, int *verify, int ikey, … in krb5_mic_mbuf() argument
662 int kdx = (verify == NULL) ? (reverse ? GSS_RCV : GSS_SND) : (reverse ? GSS_SND : GSS_RCV); in krb5_mic_mbuf()
702 if (verify) { in krb5_mic_mbuf()
703 *verify = (memcmp(mic, digest, ctx->digest_size) == 0); in krb5_mic_mbuf()
704 if (!*verify) { in krb5_mic_mbuf()
/xnu-11215/osfmk/tests/
H A DREADME.md3 … run in kernel at boot-time. The primary objective for these tests is to verify functionality of v…
100 T_ASSERT(assert_retval == (void *)XT_RET_W_SUCCESS, "verify assertion was hit");
/xnu-11215/libkern/libkern/crypto/
H A Dregister_crypto.h83 …int (*verify)(const struct ccchacha20poly1305_info *info, ccchacha20poly1305_ctx *ctx, const uint8… member
/xnu-11215/tests/
H A Dstackshot_accuracy.m98 /* we should be able to verify delta stackshots */
254 /* if we couldn't fault the pages back in, then at least verify that we tried */
H A Dstackshot_tests.m1943 * take the stackshot without calling receive to verify that the stackshot wait
1980 * take the stackshot to verify that the stackshot wait info shows our (the server) PID
2576 // having a way to verify that the coreanalytics event was received would be even better
/xnu-11215/tests/vm/
H A Dtest_vm_no_pager.m92 /* Iterate corpse kcdata and verify `current_expected_triage_string` is found */
/xnu-11215/doc/vm/
H A Dsanitize.md258 incorrect input values, to verify that the functions return the expected error
394 place to verify the desired behavior.
406 Step 8: run your new tests and verify that the patterns of success and
/xnu-11215/libkern/zlib/
H A DREADME25 please check this site to verify that you have the latest version of zlib;
/xnu-11215/doc/lifecycle/
H A Dhibernation.md284 verify that the rorgn matches its original contents.
/xnu-11215/config/
H A DMASTER592 # MACH_ASSERT controls the assert() and ASSERT() macros, used to verify the
/xnu-11215/bsd/net/
H A Ddlil.c7610 const struct sockaddr *verify; in dlil_resolve_multi() local
7635 verify = ll_addr; in dlil_resolve_multi()
7637 verify = proto_addr; in dlil_resolve_multi()
7639 result = ifp->if_check_multi(ifp, verify); in dlil_resolve_multi()
/xnu-11215/bsd/vfs/
H A Dkpi_vfs.c6195 DTRACE_FSINFO(verify, vnode_t, vp); in VNOP_VERIFY()