Home
last modified time | relevance | path

Searched refs:public_key (Results 1 – 9 of 9) sorted by relevance

/xnu-10063.141.1/bsd/kern/code_signing/
H A Dxnu.c108 const uint8_t public_key[XNU_LOCAL_SIGNING_KEY_SIZE]) in xnu_set_local_signing_public_key()
124 memcpy(local_signing_public_key, public_key, sizeof(local_signing_public_key)); in xnu_set_local_signing_public_key()
H A Dppl.c202 const uint8_t public_key[XNU_LOCAL_SIGNING_KEY_SIZE]) in ppl_set_local_signing_public_key()
204 return pmap_set_local_signing_public_key(public_key); in ppl_set_local_signing_public_key()
H A Dtxm.c833 const uint8_t public_key[XNU_LOCAL_SIGNING_KEY_SIZE]) in txm_set_local_signing_public_key()
840 txm_kernel_call(&txm_call, public_key); in txm_set_local_signing_public_key()
/xnu-10063.141.1/osfmk/kdp/
H A Dkdp_core.c1494 kdp_core_init_encryption_stage(void *public_key, size_t public_key_size) in kdp_core_init_encryption_stage() argument
1504 if (public_key && kern_dump_is_encryption_available()) { in kdp_core_init_encryption_stage()
1505 ret = aea_stage_initialize(&new_encryption_stage, public_key, public_key_size); in kdp_core_init_encryption_stage()
1731 void *public_key = NULL; in kdp_core_polled_io_polled_file_available() local
1733 public_key = kalloc_data(temp_header.pub_key_length, in kdp_core_polled_io_polled_file_available()
1738 …, temp_header.pub_key_offset + PUBLIC_KEY_RESERVED_LENGTH, temp_header.pub_key_length, public_key); in kdp_core_polled_io_polled_file_available()
1741 kfree_data(public_key, temp_header.pub_key_length); in kdp_core_polled_io_polled_file_available()
1748 ret = kdp_core_init_encryption_stage(public_key, temp_header.pub_key_length); in kdp_core_polled_io_polled_file_available()
1754 kdp_core_public_key = public_key; in kdp_core_polled_io_polled_file_available()
/xnu-10063.141.1/bsd/sys/
H A Dcode_signing.h236 const uint8_t public_key[XNU_LOCAL_SIGNING_KEY_SIZE]);
H A Dcode_signing_internal.h78 const uint8_t * public_key);
/xnu-10063.141.1/osfmk/vm/
H A Dpmap_cs.h607 const uint8_t public_key[PMAP_CS_LOCAL_SIGNING_KEY_SIZE]);
/xnu-10063.141.1/bsd/kern/
H A Dkern_codesigning.c747 const uint8_t public_key[XNU_LOCAL_SIGNING_KEY_SIZE]) in set_local_signing_public_key()
749 CSM_PREFIX(set_local_signing_public_key)(public_key); in set_local_signing_public_key()
/xnu-10063.141.1/osfmk/arm/pmap/
H A Dpmap.c1257 pmap_set_local_signing_public_key, (const uint8_t public_key[PMAP_CS_LOCAL_SIGNING_KEY_SIZE]),
14207 pmap_set_local_signing_public_key_internal(const uint8_t public_key[PMAP_CS_LOCAL_SIGNING_KEY_SIZE])
14223 memcpy(pmap_local_signing_public_key, public_key, PMAP_CS_LOCAL_SIGNING_KEY_SIZE);
14228 pmap_set_local_signing_public_key(const uint8_t public_key[PMAP_CS_LOCAL_SIGNING_KEY_SIZE])
14231 return pmap_set_local_signing_public_key_ppl(public_key);
14233 return pmap_set_local_signing_public_key_internal(public_key);