Add supportedMechs request.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22152 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-12-04 19:59:18 +00:00
parent 0db626f9e3
commit 8ab241da96

View File

@@ -5,6 +5,15 @@ BEGIN
IMPORTS EncryptedData, Principal FROM krb5;
DigestTypes ::= BIT STRING {
ntlm-v1(0),
ntlm-v1-session(1),
ntlm-v2(2),
digest-md5(3),
chap-md5(4),
ms-chap-v2(5)
}
DigestInit ::= SEQUENCE {
type UTF8String, -- http, sasl, chap, cram-md5 --
channel [0] SEQUENCE {
@@ -95,7 +104,8 @@ DigestReqInner ::= CHOICE {
init [0] DigestInit,
digestRequest [1] DigestRequest,
ntlmInit [2] NTLMInit,
ntlmRequest [3] NTLMRequest
ntlmRequest [3] NTLMRequest,
supportedMechs [4] NULL
}
DigestREQ ::= [APPLICATION 128] SEQUENCE {
@@ -108,7 +118,9 @@ DigestRepInner ::= CHOICE {
initReply [1] DigestInitReply,
response [2] DigestResponse,
ntlmInitReply [3] NTLMInitReply,
ntlmResponse [4] NTLMResponse
ntlmResponse [4] NTLMResponse,
supportedMechs [5] DigestTypes,
...
}
DigestREP ::= [APPLICATION 129] SEQUENCE {