add VerifyMac to the ClientSession interface.

This commit is contained in:
John Shahid 2013-03-15 19:06:28 -04:00
parent b6450042ef
commit ca8e8b0536

View File

@ -49,6 +49,7 @@ type ClientSession interface {
Seal(message []byte) ([]byte, error)
Sign(message []byte) ([]byte, error)
Mac(message []byte, sequenceNumber int) ([]byte, error)
VerifyMac(message, expectedMac []byte, sequenceNumber int) (bool, error)
}
// Creates an NTLM v1 or v2 server