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