Home
last modified time | relevance | path

Searched refs:toid (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dutil_token.c197 gss_OID_desc toid; local
223 toid.length = *buf++;
225 if ((toksize-=toid.length) < 0)
227 toid.elements = buf;
228 buf+=toid.length;
230 if (! g_OID_equal(&toid, mech))
/illumos-gate/usr/src/uts/common/gssapi/mechs/dummy/
H A Ddmech.c519 gss_OID_desc toid; local
540 toid.length = *buf++;
542 if ((toksize -= toid.length) < 0)
544 toid.elements = buf;
545 buf += toid.length;
547 if (! g_OID_equal(&toid, mech))
/illumos-gate/usr/src/lib/gss_mechs/mech_dummy/mech/
H A Ddmech.c1362 gss_OID_desc toid; local
1383 toid.length = *buf++;
1385 if ((toksize -= toid.length) < 0)
1387 toid.elements = buf;
1388 buf += toid.length;
1390 if (!g_OID_equal(&toid, mech))
/illumos-gate/usr/src/lib/gss_mechs/mech_spnego/mech/
H A Dspnego_mech.c2842 gss_OID_desc toid; in get_mech_oid() local
2853 toid.length = *(*buff_in)++; in get_mech_oid()
2855 if ((*buff_in + toid.length) > end) in get_mech_oid()
2858 toid.elements = *buff_in; in get_mech_oid()
2859 *buff_in += toid.length; in get_mech_oid()
2861 status = generic_gss_copy_oid(minor_status, &toid, &mech_out); in get_mech_oid()
3879 gss_OID_desc toid; in g_verify_token_header() local
3905 toid.length = *buf++; in g_verify_token_header()
3907 if (toksize < toid.length) in g_verify_token_header()
3910 toksize -= toid.length; in g_verify_token_header()
[all …]