Home
last modified time | relevance | path

Searched refs:temp_key (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dsalt-des.c86 DES_cblock temp_key; in krb5_DES_AFS3_Transarc_string_to_key() local
102 memcpy(&temp_key, "kerberos", 8); in krb5_DES_AFS3_Transarc_string_to_key()
103 DES_set_odd_parity (&temp_key); in krb5_DES_AFS3_Transarc_string_to_key()
104 DES_set_key_unchecked (&temp_key, &schedule); in krb5_DES_AFS3_Transarc_string_to_key()
107 memcpy(&temp_key, &ivec, 8); in krb5_DES_AFS3_Transarc_string_to_key()
108 DES_set_odd_parity (&temp_key); in krb5_DES_AFS3_Transarc_string_to_key()
109 DES_set_key_unchecked (&temp_key, &schedule); in krb5_DES_AFS3_Transarc_string_to_key()
112 memset(&temp_key, 0, sizeof(temp_key)); in krb5_DES_AFS3_Transarc_string_to_key()
/netbsd-src/sys/kern/
H A Dvfs_vnode.c1866 uint8_t temp_buf[64], *temp_key; in vcache_reclaim()
1915 temp_key = kmem_alloc(temp_key_len, KM_SLEEP); in vcache_reclaim()
1917 temp_key = temp_buf; in vcache_reclaim()
1921 memcpy(temp_key, vip->vi_key.vk_key, temp_key_len); in vcache_reclaim()
1922 vip->vi_key.vk_key = temp_key; in vcache_reclaim()
1972 if (temp_key != temp_buf) in vcache_reclaim()
1973 kmem_free(temp_key, temp_key_len); in vcache_reclaim()
1861 uint8_t temp_buf[64], *temp_key; vcache_reclaim() local