aboutsummaryrefslogtreecommitdiff
path: root/goldap/authentication_choice.go
blob: 804d84d5145ab74e08a03f36401dba0bc614477f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package message

import "fmt"

//
//        AuthenticationChoice ::= CHOICE {
//             simple                  [0] OCTET STRING,
//                                     -- 1 and 2 reserved
//             sasl                    [3] SaslCredentials,
//             ...  }

func readAuthenticationChoice(bytes *Bytes) (ret AuthenticationChoice, err error) {
	tagAndLength, err := bytes.PreviewTagAndLength()
	if err != nil {
		err = LdapError{fmt.Sprintf("readAuthenticationChoice:\n%s", err.Error())}
		return
	}
	err = tagAndLength.ExpectClass(classContextSpecific)
	if err != nil {
		err = LdapError{fmt.Sprintf("readAuthenticationChoice:\n%s", err.Error())}
		return
	}
	switch tagAndLength.Tag {
	case TagAuthenticationChoiceSimple:
		ret, err = readTaggedOCTETSTRING(bytes, classContextSpecific, TagAuthenticationChoiceSimple)
	case TagAuthenticationChoiceSaslCredentials:
		ret, err = readSaslCredentials(bytes)
	default:
		err = LdapError{fmt.Sprintf("readAuthenticationChoice: invalid tag value %d for AuthenticationChoice", tagAndLength.Tag)}
		return
	}
	if err != nil {
		err = LdapError{fmt.Sprintf("readAuthenticationChoice:\n%s", err.Error())}
		return
	}
	return
}