Home
last modified time | relevance | path

Searched refs:encryptedkey (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/sys/netinet/netdump/
H A Dnetdump_client.c504 uint8_t *encryptedkey; in netdump_ioctl() local
534 encryptedkey = NULL; in netdump_ioctl()
565 encryptedkey = malloc(conf->kda_encryptedkeysize, in netdump_ioctl()
567 error = copyin(conf->kda_encryptedkey, encryptedkey, in netdump_ioctl()
570 free(encryptedkey, M_TEMP); in netdump_ioctl()
574 conf->kda_encryptedkey = encryptedkey; in netdump_ioctl()
588 zfree(encryptedkey, M_TEMP); in netdump_ioctl()
/freebsd-14.2/sys/geom/
H A Dgeom_dev.c573 uint8_t *encryptedkey; in g_dev_ioctl() local
591 encryptedkey = malloc(kda->kda_encryptedkeysize, M_TEMP, in g_dev_ioctl()
593 error = copyin(kda->kda_encryptedkey, encryptedkey, in g_dev_ioctl()
596 encryptedkey = NULL; in g_dev_ioctl()
599 kda->kda_encryptedkey = encryptedkey; in g_dev_ioctl()
602 zfree(encryptedkey, M_TEMP); in g_dev_ioctl()
/freebsd-14.2/sys/kern/
H A Dkern_shutdown.c1081 const uint8_t *key, uint32_t encryptedkeysize, const uint8_t *encryptedkey) in kerneldumpcrypto_create() argument
1110 memcpy(kdk->kdk_encryptedkey, encryptedkey, encryptedkeysize); in kerneldumpcrypto_create()