New test.
[mono.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Ntlm / ChangeLog
1 2004-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * MessageBase.cs: Fixed endian issue. Added globalization support.
4         * Type1Message.cs: Fixed endian issue. Added globalization support.
5         * Type2Message.cs: Fixed endian issue.
6         * Type3Message.cs: Fixed endian issue. Added globalization support.
7
8 2004-04-22  Sebastien Pouliot  <sebastien@ximian.com>
9
10         * ChallengeResponse.cs: FxCop-ized. 
11         * NtlmFlags.cs: FxCop-ized. CLS compliance.
12         * Type1Message.cs: FxCop-ized.
13         * Type3Message.cs: FxCop-ized.
14
15 2004-04-20  Sebastien Pouliot  <sebastien@ximian.com>
16
17         * NtlmFlags.cs: Changed enum to int for CLS compliance.
18
19 2003-12-17  Sebastien Pouliot  <spouliot@videotron.ca>
20
21         * ChallengeResponse.cs: Sorry I must have a profesionnal problem with
22         weak passwords ;-). Anyway I corrected the CR for null passwords (which
23         would produce a weak key for the first DES key) and added clean up :).
24         However it (null password) doesn't work for SQL Server authentication ?
25
26 2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
27
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
32 2003-12-02  Sebastien Pouliot  <spouliot@videotron.ca>
33
34         * ChallengeResponse.cs: Fixed compilation error with mcs (System.Math.Min)
35         * Type2Message.cs: Fixed compilation warning for override. Flags are now
36         32 bits.
37         * Type3Message.cs: Fixed compilation warning for override. Removed (old)
38         header code to use base class. Changed 16 bits Options for 32 bits Flags 
39         (NtlmFlags).
40
41 2003-12-01  Sebastien Pouliot  <spouliot@videotron.ca>
42
43         * ChallengeResponse.cs: New. Implements the NTLM (v1) Challenge Response.
44         * MessageBase.cs: New. Abstract base class for NTLM messages.
45         * NtlmFlags.cs: New. All known flags for NTLM.
46         * Type1Message.cs: New. Negotiation message.
47         * Type2Message.cs: New. Challenge message.
48         * Type3Message.cs: New. Authentication message.