Home
last modified time | relevance | path

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

/freebsd-13.1/sys/netinet/netdump/
H A Dnetdump_client.c467 uint8_t *encryptedkey; in netdump_ioctl() local
589 encryptedkey = NULL; in netdump_ioctl()
622 encryptedkey = malloc(conf->kda_encryptedkeysize, in netdump_ioctl()
624 error = copyin(conf->kda_encryptedkey, encryptedkey, in netdump_ioctl()
627 free(encryptedkey, M_TEMP); in netdump_ioctl()
631 conf->kda_encryptedkey = encryptedkey; in netdump_ioctl()
645 zfree(encryptedkey, M_TEMP); in netdump_ioctl()
/freebsd-13.1/sys/geom/
H A Dgeom_dev.c611 uint8_t *encryptedkey; in g_dev_ioctl() local
629 encryptedkey = malloc(kda->kda_encryptedkeysize, M_TEMP, in g_dev_ioctl()
631 error = copyin(kda->kda_encryptedkey, encryptedkey, in g_dev_ioctl()
634 encryptedkey = NULL; in g_dev_ioctl()
637 kda->kda_encryptedkey = encryptedkey; in g_dev_ioctl()
640 zfree(encryptedkey, M_TEMP); in g_dev_ioctl()
/freebsd-13.1/sys/kern/
H A Dkern_shutdown.c1035 const uint8_t *key, uint32_t encryptedkeysize, const uint8_t *encryptedkey) in kerneldumpcrypto_create() argument
1064 memcpy(kdk->kdk_encryptedkey, encryptedkey, encryptedkeysize); in kerneldumpcrypto_create()