brintos

brintos / linux-shallow public Read only

0
0
Text · 829 B · 0015138 Raw
40 lines · plain
1-- SPDX-License-Identifier: BSD-3-Clause2--3-- Copyright (C) 1998, 2000 IETF Trust and the persons identified as authors4-- of the code5--6-- https://www.rfc-editor.org/rfc/rfc2478#section-3.2.17-- https://www.rfc-editor.org/rfc/rfc2743#section-3.18 9GSSAPI ::=10	[APPLICATION 0] IMPLICIT SEQUENCE {11		thisMech12			OBJECT IDENTIFIER ({ksmbd_gssapi_this_mech}),13		negotiationToken14			NegotiationToken15	}16 17MechType ::= OBJECT IDENTIFIER ({ksmbd_neg_token_init_mech_type})18 19MechTypeList ::= SEQUENCE OF MechType20 21NegTokenInit ::=22	SEQUENCE {23		mechTypes24			[0] MechTypeList,25		reqFlags26			[1] BIT STRING OPTIONAL,27		mechToken28			[2] OCTET STRING OPTIONAL ({ksmbd_neg_token_init_mech_token}),29		mechListMIC30			[3] OCTET STRING OPTIONAL31	}32 33NegotiationToken ::=34	CHOICE {35		negTokenInit36			[0] NegTokenInit,37		negTokenTarg38			[1] ANY39	}40