| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- package GSSAPI
- import (
- "errors"
- "fmt"
- "github.com/jcmturner/asn1"
- "github.com/jcmturner/gokrb5/asn1tools"
- )
- const (
- SPNEGO_OIDHex = "2b0601050502" //1.3.6.1.5.5.2
- )
- type SPNEGO struct {
- Init bool
- Resp bool
- NegTokenInit NegTokenInit
- NegTokenResp NegTokenResp
- }
- func (s *SPNEGO) Unmarshal(b []byte) error {
- var r []byte
- var err error
- if b[0] != byte(161) {
- // Not a NegTokenResp/Targ could be a NegTokenInit
- var oid asn1.ObjectIdentifier
- r, err = asn1.UnmarshalWithParams(b, &oid, fmt.Sprintf("application,explicit,tag:%v", 0))
- if err != nil {
- return fmt.Errorf("Not a valid SPNEGO token: %v", err)
- }
- // Check the OID is the SPNEGO OID value
- if !oid.Equal(asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 2}) {
- return errors.New("OID does not match SPNEGO OID 1.3.6.1.5.5.2")
- }
- } else {
- // Could be a NegTokenResp/Targ
- r = b
- }
- var a asn1.RawValue
- _, err = asn1.Unmarshal(r, &a)
- if err != nil {
- return fmt.Errorf("Error unmarshalling SPNEGO: %v", err)
- }
- switch a.Tag {
- case 0:
- _, err = asn1.Unmarshal(a.Bytes, &s.NegTokenInit)
- if err != nil {
- return fmt.Errorf("Error unmarshalling NegotiationToken type %d: %v", a.Tag, err)
- }
- s.Init = true
- case 1:
- _, err = asn1.Unmarshal(a.Bytes, &s.NegTokenResp)
- if err != nil {
- return fmt.Errorf("Error unmarshalling NegotiationToken type %d: %v", a.Tag, err)
- }
- s.Resp = true
- default:
- return errors.New("Unknown choice type for NegotiationToken")
- }
- return nil
- }
- func (s *SPNEGO) Marshal() ([]byte, error) {
- var b []byte
- if !s.Init && !s.Resp {
- return b, errors.New("SPNEGO cannot be marshalled. It contains neither a NegTokenInit or NegTokenResp")
- }
- hb, _ := asn1.Marshal(MechTypeOID_Krb5)
- if s.Init {
- tb, err := s.NegTokenInit.Marshal()
- if err != nil {
- return b, fmt.Errorf("Could not marshal NegTokenInit: %v", err)
- }
- b = append(hb, tb...)
- }
- if s.Resp {
- tb, err := s.NegTokenResp.Marshal()
- if err != nil {
- return b, fmt.Errorf("Could not marshal NegTokenResp: %v", err)
- }
- b = append(hb, tb...)
- }
- return asn1tools.AddASNAppTag(b, 0), nil
- }
|