Home
last modified time | relevance | path

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

/dragonfly/lib/libc/rpc/
H A Dsvc_auth_des.c116 des_block cryptbuf[2]; in _svcauth_des() local
207 cryptbuf[0] = verf.adv_xtimestamp; in _svcauth_des()
209 cryptbuf[1].key.high = cred->adc_fullname.window; in _svcauth_des()
210 cryptbuf[1].key.low = verf.adv_winverf; in _svcauth_des()
212 status = cbc_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des()
216 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des()
227 ixdr = (long *)cryptbuf; in _svcauth_des()
288 ixdr = (long *)cryptbuf; in _svcauth_des()
295 status = ecb_crypt((char *)sessionkey, (char *)cryptbuf, in _svcauth_des()
301 verf.adv_xtimestamp = cryptbuf[0]; in _svcauth_des()
H A Dauth_des.c275 des_block cryptbuf[2]; in authdes_marshal() local
297 ixdr = (rpc_inline_t *)cryptbuf; in authdes_marshal()
304 status = cbc_crypt((char *)&auth->ah_key, (char *)cryptbuf, in authdes_marshal()
308 status = ecb_crypt((char *)&auth->ah_key, (char *)cryptbuf, in authdes_marshal()
316 ad->ad_verf.adv_xtimestamp = cryptbuf[0]; in authdes_marshal()
318 ad->ad_cred.adc_fullname.window = cryptbuf[1].key.high; in authdes_marshal()
319 ad->ad_verf.adv_winverf = cryptbuf[1].key.low; in authdes_marshal()