2003-12-15 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Ntlm / ChangeLog
1 2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>
2
3         * ChallengeResponse.cs: Pre-calculated second part of the LM hash for 
4         small password. Otherwise we get a  DES weak key - which isn't 
5         supported (exception) by the framework.
6
7 2003-12-02  Sebastien Pouliot  <spouliot@videotron.ca>
8
9         * ChallengeResponse.cs: Fixed compilation error with mcs (System.Math.Min)
10         * Type2Message.cs: Fixed compilation warning for override. Flags are now
11         32 bits.
12         * Type3Message.cs: Fixed compilation warning for override. Removed (old)
13         header code to use base class. Changed 16 bits Options for 32 bits Flags 
14         (NtlmFlags).
15
16 2003-12-01  Sebastien Pouliot  <spouliot@videotron.ca>
17
18         * ChallengeResponse.cs: New. Implements the NTLM (v1) Challenge Response.
19         * MessageBase.cs: New. Abstract base class for NTLM messages.
20         * NtlmFlags.cs: New. All known flags for NTLM.
21         * Type1Message.cs: New. Negotiation message.
22         * Type2Message.cs: New. Challenge message.
23         * Type3Message.cs: New. Authentication message.