ChangeLog 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. 2007-08-19 Atsushi Enomoto <[email protected]>
  2. * Type2Message.cs Type3Message.cs : let's just commit my updates to
  3. ntlm stuff here as I have done before ahead of sys.security.dll.
  4. 2007-03-30 Atsushi Enomoto <[email protected]>
  5. * Type1Message.cs : handle offsets per (assumed) document.
  6. (It should be re-examined in Mono.Security with SqlClient btw...)
  7. 2007-03-27 Atsushi Enomoto
  8. This is temporary addition so do not expect further change here
  9. unless these changes are not merged into mcs/class/Mono.Security.
  10. 2004-11-05 Sebastien Pouliot <[email protected]>
  11. * MessageBase.cs: Fixed endian issue. Added globalization support.
  12. * Type1Message.cs: Fixed endian issue. Added globalization support.
  13. * Type2Message.cs: Fixed endian issue.
  14. * Type3Message.cs: Fixed endian issue. Added globalization support.
  15. 2004-04-22 Sebastien Pouliot <[email protected]>
  16. * ChallengeResponse.cs: FxCop-ized.
  17. * NtlmFlags.cs: FxCop-ized. CLS compliance.
  18. * Type1Message.cs: FxCop-ized.
  19. * Type3Message.cs: FxCop-ized.
  20. 2004-04-20 Sebastien Pouliot <[email protected]>
  21. * NtlmFlags.cs: Changed enum to int for CLS compliance.
  22. 2003-12-17 Sebastien Pouliot <[email protected]>
  23. * ChallengeResponse.cs: Sorry I must have a profesionnal problem with
  24. weak passwords ;-). Anyway I corrected the CR for null passwords (which
  25. would produce a weak key for the first DES key) and added clean up :).
  26. However it (null password) doesn't work for SQL Server authentication ?
  27. 2003-12-15 Sebastien Pouliot <[email protected]>
  28. * ChallengeResponse.cs: Pre-calculated second part of the LM hash for
  29. small password. Otherwise we get a DES weak key - which isn't
  30. supported (exception) by the framework.
  31. 2003-12-02 Sebastien Pouliot <[email protected]>
  32. * ChallengeResponse.cs: Fixed compilation error with mcs (System.Math.Min)
  33. * Type2Message.cs: Fixed compilation warning for override. Flags are now
  34. 32 bits.
  35. * Type3Message.cs: Fixed compilation warning for override. Removed (old)
  36. header code to use base class. Changed 16 bits Options for 32 bits Flags
  37. (NtlmFlags).
  38. 2003-12-01 Sebastien Pouliot <[email protected]>
  39. * ChallengeResponse.cs: New. Implements the NTLM (v1) Challenge Response.
  40. * MessageBase.cs: New. Abstract base class for NTLM messages.
  41. * NtlmFlags.cs: New. All known flags for NTLM.
  42. * Type1Message.cs: New. Negotiation message.
  43. * Type2Message.cs: New. Challenge message.
  44. * Type3Message.cs: New. Authentication message.