linux-stable/fs/cifs/cifs_spnego_negtokeninit.asn1
Hyunchul Lee 0475c3655e cifs: decoding negTokenInit with generic ASN1 decoder
Decode negTokenInit with lib/asn1_decoder. For that,
add OIDs in linux/oid_registry.h and a negTokenInit
ASN1 file, "spnego_negtokeninit.asn1".
And define decoder's callback functions, which
are the gssapi_this_mech for checking SPENGO oid and
the neg_token_init_mech_type for getting authentication
mechanisms supported by a server.

Signed-off-by: Hyunchul Lee <hyc.lee@gmail.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Reviewed-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
Signed-off-by: Steve French <stfrench@microsoft.com>
2021-06-20 21:28:17 -05:00

40 lines
698 B
Groff

GSSAPI ::=
[APPLICATION 0] IMPLICIT SEQUENCE {
thisMech
OBJECT IDENTIFIER ({cifs_gssapi_this_mech}),
negotiationToken
NegotiationToken
}
MechType ::= OBJECT IDENTIFIER ({cifs_neg_token_init_mech_type})
MechTypeList ::= SEQUENCE OF MechType
NegHints ::= SEQUENCE {
hintName
[0] GeneralString OPTIONAL,
hintAddress
[1] OCTET STRING OPTIONAL
}
NegTokenInit2 ::=
SEQUENCE {
mechTypes
[0] MechTypeList OPTIONAL,
reqFlags
[1] BIT STRING OPTIONAL,
mechToken
[2] OCTET STRING OPTIONAL,
negHints
[3] NegHints OPTIONAL,
mechListMIC
[3] OCTET STRING OPTIONAL
}
NegotiationToken ::=
CHOICE {
negTokenInit
[0] NegTokenInit2,
negTokenTarg
[1] ANY
}