telebit/vendor/github.com/jcmturner/rpc/v2/mstypes/user_session_key.go

12 lines
308 B
Go
Raw Normal View History

2020-06-03 06:18:04 +00:00
package mstypes
// CypherBlock implements https://msdn.microsoft.com/en-us/library/cc237040.aspx
type CypherBlock struct {
Data [8]byte // size = 8
}
// UserSessionKey implements https://msdn.microsoft.com/en-us/library/cc237080.aspx
type UserSessionKey struct {
CypherBlock [2]CypherBlock // size = 2
}