Lines Matching refs:verf
519 struct opaque_auth creds, verf; in rpc_gss_marshal() local
587 verf.oa_flavor = RPCSEC_GSS; in rpc_gss_marshal()
588 verf.oa_base = checksum.value; in rpc_gss_marshal()
589 verf.oa_length = checksum.length; in rpc_gss_marshal()
591 xdr_stat = xdr_opaque_auth(xdrs, &verf); in rpc_gss_marshal()
613 rpc_gss_validate(AUTH *auth, uint32_t xid, struct opaque_auth *verf, in rpc_gss_validate() argument
632 if (!verf) { in rpc_gss_validate()
646 gd->gd_verf.value = mem_alloc(verf->oa_length); in rpc_gss_validate()
654 memcpy(gd->gd_verf.value, verf->oa_base, verf->oa_length); in rpc_gss_validate()
655 gd->gd_verf.length = verf->oa_length; in rpc_gss_validate()
684 checksum.value = verf->oa_base; in rpc_gss_validate()
685 checksum.length = verf->oa_length; in rpc_gss_validate()