Searched refs:cryptbuf (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/lib/libc/rpc/ |
| H A D | svc_auth_des.c | 115 des_block cryptbuf[2]; in _svcauth_des() local 206 cryptbuf[0] = verf.adv_xtimestamp; in _svcauth_des() 208 cryptbuf[1].key.high = cred->adc_fullname.window; in _svcauth_des() 209 cryptbuf[1].key.low = verf.adv_winverf; in _svcauth_des() 211 status = cbc_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des() 215 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des() 226 ixdr = (long *)cryptbuf; in _svcauth_des() 287 ixdr = (long *)cryptbuf; in _svcauth_des() 294 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des() 300 verf.adv_xtimestamp = cryptbuf[0]; in _svcauth_des()
|
| H A D | auth_des.c | 276 des_block cryptbuf[2]; in authdes_marshal() local 298 ixdr = (rpc_inline_t *)cryptbuf; in authdes_marshal() 305 status = cbc_crypt((char *)&auth->ah_key, (char *)cryptbuf, in authdes_marshal() 309 status = ecb_crypt((char *)&auth->ah_key, (char *)cryptbuf, in authdes_marshal() 317 ad->ad_verf.adv_xtimestamp = cryptbuf[0]; in authdes_marshal() 319 ad->ad_cred.adc_fullname.window = cryptbuf[1].key.high; in authdes_marshal() 320 ad->ad_verf.adv_winverf = cryptbuf[1].key.low; in authdes_marshal()
|