Home
last modified time | relevance | path

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

/freebsd/lib/libc/rpc/
H A Dsvc_auth_des.c112 des_block cryptbuf[2]; in _svcauth_des() local
203 cryptbuf[0] = verf.adv_xtimestamp; in _svcauth_des()
205 cryptbuf[1].key.high = cred->adc_fullname.window; in _svcauth_des()
206 cryptbuf[1].key.low = verf.adv_winverf; in _svcauth_des()
208 status = cbc_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des()
212 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des()
223 ixdr = (long *)cryptbuf; in _svcauth_des()
284 ixdr = (long *)cryptbuf; in _svcauth_des()
291 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des()
297 verf.adv_xtimestamp = cryptbuf[0]; in _svcauth_des()
H A Dauth_des.c273 des_block cryptbuf[2]; in authdes_marshal() local
295 ixdr = (rpc_inline_t *)cryptbuf; in authdes_marshal()
302 status = cbc_crypt((char *)&auth->ah_key, (char *)cryptbuf, in authdes_marshal()
306 status = ecb_crypt((char *)&auth->ah_key, (char *)cryptbuf, in authdes_marshal()
314 ad->ad_verf.adv_xtimestamp = cryptbuf[0]; in authdes_marshal()
316 ad->ad_cred.adc_fullname.window = cryptbuf[1].key.high; in authdes_marshal()
317 ad->ad_verf.adv_winverf = cryptbuf[1].key.low; in authdes_marshal()