This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Ntlm / ChangeLog
1 2004-04-22  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * ChallengeResponse.cs: FxCop-ized. 
4         * NtlmFlags.cs: FxCop-ized. CLS compliance.
5         * Type1Message.cs: FxCop-ized.
6         * Type3Message.cs: FxCop-ized.
7
8 2004-04-20  Sebastien Pouliot  <sebastien@ximian.com>
9
10         * NtlmFlags.cs: Changed enum to int for CLS compliance.
11
12 2003-12-17  Sebastien Pouliot  <spouliot@videotron.ca>
13
14         * ChallengeResponse.cs: Sorry I must have a profesionnal problem with
15         weak passwords ;-). Anyway I corrected the CR for null passwords (which
16         would produce a weak key for the first DES key) and added clean up :).
17         However it (null password) doesn't work for SQL Server authentication ?
18
19 2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
20
21         * ChallengeResponse.cs: Pre-calculated second part of the LM hash for 
22         small password. Otherwise we get a  DES weak key - which isn't 
23         supported (exception) by the framework.
24
25 2003-12-02  Sebastien Pouliot  <spouliot@videotron.ca>
26
27         * ChallengeResponse.cs: Fixed compilation error with mcs (System.Math.Min)
28         * Type2Message.cs: Fixed compilation warning for override. Flags are now
29         32 bits.
30         * Type3Message.cs: Fixed compilation warning for override. Removed (old)
31         header code to use base class. Changed 16 bits Options for 32 bits Flags 
32         (NtlmFlags).
33
34 2003-12-01  Sebastien Pouliot  <spouliot@videotron.ca>
35
36         * ChallengeResponse.cs: New. Implements the NTLM (v1) Challenge Response.
37         * MessageBase.cs: New. Abstract base class for NTLM messages.
38         * NtlmFlags.cs: New. All known flags for NTLM.
39         * Type1Message.cs: New. Negotiation message.
40         * Type2Message.cs: New. Challenge message.
41         * Type3Message.cs: New. Authentication message.