1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- namespace SMBLibrary.Authentication
- {
- [Flags]
- public enum NegotiateFlags : uint
- {
- UnicodeEncoding = 0x00000001,
- OEMEncoding = 0x00000002,
- TargetNameSupplied = 0x00000004,
- Sign = 0x00000010,
- Seal = 0x00000020,
- Datagram = 0x00000040,
-
-
-
-
- LanManagerKey = 0x00000080,
- NTLMKey = 0x00000200,
-
-
-
-
- Anonymous = 0x00000800,
- DomainNameSupplied = 0x00001000,
- WorkstationNameSupplied = 0x00002000,
- AlwaysSign = 0x00008000,
- TargetTypeDomain = 0x00010000,
- TargetTypeServer = 0x00020000,
-
-
-
-
-
- ExtendedSecurity = 0x00080000,
- Identify = 0x00100000,
- RequestLMSessionKey = 0x00400000,
- TargetInfo = 0x00800000,
- Version = 0x02000000,
- Use128BitEncryption = 0x20000000,
- KeyExchange = 0x40000000,
- Use56BitEncryption = 0x80000000,
- }
- }
|