1-- SPDX-License-Identifier: BSD-3-Clause 2-- 3-- Copyright (C) 1998 IETF Trust and the persons identified as authors 4-- of the code 5-- 6-- https://www.rfc-editor.org/rfc/rfc2478#section-3.2.1 7 8GSSAPI ::= 9 CHOICE { 10 negTokenInit 11 [0] ANY, 12 negTokenTarg 13 [1] NegTokenTarg 14 } 15 16NegTokenTarg ::= 17 SEQUENCE { 18 negResult 19 [0] ENUMERATED OPTIONAL, 20 supportedMech 21 [1] OBJECT IDENTIFIER OPTIONAL, 22 responseToken 23 [2] OCTET STRING OPTIONAL ({ksmbd_neg_token_targ_resp_token}), 24 mechListMIC 25 [3] OCTET STRING OPTIONAL 26 } 27