AVPairKey.cs 558 B

123456789101112131415161718
  1. namespace SMBLibrary.Authentication
  2. {
  3. public enum AVPairKey : ushort
  4. {
  5. EOL = 0x0000,
  6. NbComputerName = 0x0001, // Unicode
  7. NbDomainName = 0x0002, // Unicode
  8. DnsComputerName = 0x0003, // Unicode
  9. DnsDomainName = 0x0004, // Unicode
  10. DnsTreeName = 0x0005, // Unicode
  11. Flags = 0x0006, // UInt32
  12. Timestamp = 0x0006, // Filetime
  13. SingleHost = 0x0008, // platform-specific BLOB
  14. TargetName = 0x0009, // Unicode
  15. ChannelBindings = 0x000A, // MD5 Hash
  16. }
  17. }