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