blob: fcf0a5d9a66ecb0e1886552b2a69225b9261576e [file] [log] [blame]
onkarkundargi72cfd362020-02-27 12:34:37 +05301package mstypes
2
3// CypherBlock implements https://msdn.microsoft.com/en-us/library/cc237040.aspx
4type CypherBlock struct {
5 Data [8]byte // size = 8
6}
7
8// UserSessionKey implements https://msdn.microsoft.com/en-us/library/cc237080.aspx
9type UserSessionKey struct {
10 CypherBlock [2]CypherBlock // size = 2
11}