You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
416 B
22 lines
416 B
4 years ago
|
package ntlmssp
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
)
|
||
|
|
||
|
var signature = [8]byte{'N', 'T', 'L', 'M', 'S', 'S', 'P', 0}
|
||
|
|
||
|
type messageHeader struct {
|
||
|
Signature [8]byte
|
||
|
MessageType uint32
|
||
|
}
|
||
|
|
||
|
func (h messageHeader) IsValid() bool {
|
||
|
return bytes.Equal(h.Signature[:], signature[:]) &&
|
||
|
h.MessageType > 0 && h.MessageType < 4
|
||
|
}
|
||
|
|
||
|
func newMessageHeader(messageType uint32) messageHeader {
|
||
|
return messageHeader{signature, messageType}
|
||
|
}
|