user_session_key.go 308 B

1234567891011
  1. package mstypes
  2. // CypherBlock implements https://msdn.microsoft.com/en-us/library/cc237040.aspx
  3. type CypherBlock struct {
  4. Data [8]byte // size = 8
  5. }
  6. // UserSessionKey implements https://msdn.microsoft.com/en-us/library/cc237080.aspx
  7. type UserSessionKey struct {
  8. CypherBlock [2]CypherBlock // size = 2
  9. }