Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « Mono.Security.Protocol.Ntlm « Mono.Security « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c00072b11d5f63efd65736fa724eb1559b42aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
2004-04-20  Sebastien Pouliot  <sebastien@ximian.com>

	* NtlmFlags.cs: Changed enum to int for CLS compliance.

2003-12-17  Sebastien Pouliot  <spouliot@videotron.ca>

	* ChallengeResponse.cs: Sorry I must have a profesionnal problem with
	weak passwords ;-). Anyway I corrected the CR for null passwords (which
	would produce a weak key for the first DES key) and added clean up :).
	However it (null password) doesn't work for SQL Server authentication ?

2003-12-15  Sebastien Pouliot  <spouliot@videotron.ca>

	* ChallengeResponse.cs: Pre-calculated second part of the LM hash for 
	small password. Otherwise we get a  DES weak key - which isn't 
	supported (exception) by the framework.

2003-12-02  Sebastien Pouliot  <spouliot@videotron.ca>

	* ChallengeResponse.cs: Fixed compilation error with mcs (System.Math.Min)
	* Type2Message.cs: Fixed compilation warning for override. Flags are now
	32 bits.
	* Type3Message.cs: Fixed compilation warning for override. Removed (old)
	header code to use base class. Changed 16 bits Options for 32 bits Flags 
	(NtlmFlags).

2003-12-01  Sebastien Pouliot  <spouliot@videotron.ca>

	* ChallengeResponse.cs: New. Implements the NTLM (v1) Challenge Response.
	* MessageBase.cs: New. Abstract base class for NTLM messages.
	* NtlmFlags.cs: New. All known flags for NTLM.
	* Type1Message.cs: New. Negotiation message.
	* Type2Message.cs: New. Challenge message.
	* Type3Message.cs: New. Authentication message.