mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
201c0da4d0
Per section 4.c. of the IETF Trust Legal Provisions, "Code Components" in IETF Documents are licensed on the terms of the BSD-3-Clause license: https://trustee.ietf.org/documents/trust-legal-provisions/tlp-5/ The term "Code Components" specifically includes ASN.1 modules: https://trustee.ietf.org/documents/trust-legal-provisions/code-components-list-3/ Add an SPDX identifier as well as a copyright notice pursuant to section 6.d. of the Trust Legal Provisions to all ASN.1 modules in the tree which are derived from IETF Documents. Section 4.d. of the Trust Legal Provisions requests that each Code Component identify the RFC from which it is taken, so link that RFC in every ASN.1 module. Signed-off-by: Lukas Wunner <lukas@wunner.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
40 lines
829 B
Groff
40 lines
829 B
Groff
-- SPDX-License-Identifier: BSD-3-Clause
|
|
--
|
|
-- Copyright (C) 1998, 2000 IETF Trust and the persons identified as authors
|
|
-- of the code
|
|
--
|
|
-- https://www.rfc-editor.org/rfc/rfc2478#section-3.2.1
|
|
-- https://www.rfc-editor.org/rfc/rfc2743#section-3.1
|
|
|
|
GSSAPI ::=
|
|
[APPLICATION 0] IMPLICIT SEQUENCE {
|
|
thisMech
|
|
OBJECT IDENTIFIER ({ksmbd_gssapi_this_mech}),
|
|
negotiationToken
|
|
NegotiationToken
|
|
}
|
|
|
|
MechType ::= OBJECT IDENTIFIER ({ksmbd_neg_token_init_mech_type})
|
|
|
|
MechTypeList ::= SEQUENCE OF MechType
|
|
|
|
NegTokenInit ::=
|
|
SEQUENCE {
|
|
mechTypes
|
|
[0] MechTypeList,
|
|
reqFlags
|
|
[1] BIT STRING OPTIONAL,
|
|
mechToken
|
|
[2] OCTET STRING OPTIONAL ({ksmbd_neg_token_init_mech_token}),
|
|
mechListMIC
|
|
[3] OCTET STRING OPTIONAL
|
|
}
|
|
|
|
NegotiationToken ::=
|
|
CHOICE {
|
|
negTokenInit
|
|
[0] NegTokenInit,
|
|
negTokenTarg
|
|
[1] ANY
|
|
}
|