Searched refs:verf (Results 1 – 4 of 4) sorted by relevance
/sunrpc/ |
A D | authdes_prot.c | 71 xdr_authdes_verf (register XDR *xdrs, register struct authdes_verf *verf) in libc_hidden_nolink_sunrpc() 76 ATTEMPT (xdr_opaque (xdrs, (caddr_t) & verf->adv_xtimestamp, in libc_hidden_nolink_sunrpc() 78 ATTEMPT (xdr_opaque (xdrs, (caddr_t) & verf->adv_int_u, in libc_hidden_nolink_sunrpc() 79 sizeof (verf->adv_int_u))); in libc_hidden_nolink_sunrpc()
|
A D | auth_des.c | 244 struct authdes_verf *verf = &ad->ad_verf; in authdes_marshal() local 334 ATTEMPT (xdr_authdes_verf (xdrs, verf)); in authdes_marshal() 347 struct authdes_verf verf; in authdes_validate() local 355 verf.adv_xtimestamp.key.high = *ixdr++; in authdes_validate() 356 verf.adv_xtimestamp.key.low = *ixdr++; in authdes_validate() 357 verf.adv_int_u = *ixdr++; /* nickname not XDR'd ! */ in authdes_validate() 374 ixdr = (uint32_t *) verf.adv_xtimestamp.c; in authdes_validate() 375 verf.adv_timestamp.tv_sec = IXDR_GET_U_INT32 (ixdr) + 1; in authdes_validate() 376 verf.adv_timestamp.tv_usec = IXDR_GET_U_INT32 (ixdr); in authdes_validate() 381 if (memcmp ((char *) &ad->ad_timestamp, (char *) &verf.adv_timestamp, in authdes_validate() [all …]
|
A D | svcauth_des.c | 110 struct authdes_verf verf; in _svcauth_des() local 174 verf.adv_xtimestamp.key.high = *ixdr++; in _svcauth_des() 175 verf.adv_xtimestamp.key.low = *ixdr++; in _svcauth_des() 176 verf.adv_int_u = *ixdr++; in _svcauth_des() 222 cryptbuf[0] = verf.adv_xtimestamp; in _svcauth_des() 226 cryptbuf[1].key.low = verf.adv_winverf; in _svcauth_des() 315 verf.adv_nickname = sid; in _svcauth_des() 334 verf.adv_xtimestamp = cryptbuf[0]; in _svcauth_des() 340 *ixdr++ = verf.adv_xtimestamp.key.high; in _svcauth_des() 341 *ixdr++ = verf.adv_xtimestamp.key.low; in _svcauth_des() [all …]
|
A D | auth_unix.c | 243 authunix_validate (AUTH *auth, struct opaque_auth *verf) in authunix_validate() argument 248 if (verf->oa_flavor == AUTH_SHORT) in authunix_validate() 251 xdrmem_create (&xdrs, verf->oa_base, verf->oa_length, XDR_DECODE); in authunix_validate()
|
Completed in 10 milliseconds