Home
last modified time | relevance | path

Searched refs:tok_type (Results 1 – 5 of 5) sorted by relevance

/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dutil_token.c161 void g_make_token_header(mech, body_size, buf, tok_type) in g_make_token_header() argument
165 int tok_type;
169 (tok_type == -1) ? 2 : (int) (4 + mech->length + body_size));
173 if (tok_type != -1) {
174 *(*buf)++ = (unsigned char) ((tok_type>>8)&0xff);
175 *(*buf)++ = (unsigned char) (tok_type&0xff);
188 gss_int32 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize_in, in g_verify_token_header() argument
193 int tok_type;
235 if (tok_type != -1) {
239 if ((*buf++ != ((tok_type>>8)&0xff)) ||
[all …]
/titanic_41/usr/src/uts/common/gssapi/mechs/dummy/
H A Ddmech.c73 unsigned char **buf, int tok_type);
75 unsigned char **buf_in, int tok_type,
494 g_make_token_header(mech, body_size, buf, tok_type) in g_make_token_header() argument
498 int tok_type;
505 *(*buf)++ = (unsigned char) ((tok_type>>8)&0xff);
506 *(*buf)++ = (unsigned char) (tok_type&0xff);
510 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize) in g_verify_token_header() argument
514 int tok_type;
558 if ((*buf++ != ((tok_type>>8)&0xff)) ||
559 (*buf++ != (tok_type&0xff)))
/titanic_41/usr/src/lib/gss_mechs/mech_dummy/mech/
H A Ddmech.c106 unsigned char **buf, int tok_type);
108 unsigned char **buf_in, int tok_type,
1336 g_make_token_header(mech, body_size, buf, tok_type) in g_make_token_header() argument
1340 int tok_type;
1347 *(*buf)++ = (unsigned char) ((tok_type>>8)&0xff);
1348 *(*buf)++ = (unsigned char) (tok_type&0xff);
1352 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize) in g_verify_token_header() argument
1356 int tok_type;
1400 if ((*buf++ != ((tok_type>>8)&0xff)) ||
1401 (*buf++ != (tok_type&0xff)))
/titanic_41/usr/src/uts/common/gssapi/mechs/krb5/include/
H A DgssapiP_generic.h197 unsigned char **buf, int tok_type);
201 unsigned char **buf, int tok_type,
/titanic_41/usr/src/lib/gss_mechs/mech_spnego/mech/
H A Dspnego_mech.c3883 int tok_type, in g_verify_token_header() argument