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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.ServiceModel/Mono.Security.Protocol.Ntlm/ChangeLog')
-rwxr-xr-xmcs/class/System.ServiceModel/Mono.Security.Protocol.Ntlm/ChangeLog64
1 files changed, 0 insertions, 64 deletions
diff --git a/mcs/class/System.ServiceModel/Mono.Security.Protocol.Ntlm/ChangeLog b/mcs/class/System.ServiceModel/Mono.Security.Protocol.Ntlm/ChangeLog
deleted file mode 100755
index 9fb92fe5562..00000000000
--- a/mcs/class/System.ServiceModel/Mono.Security.Protocol.Ntlm/ChangeLog
+++ /dev/null
@@ -1,64 +0,0 @@
-2007-08-19 Atsushi Enomoto <atsushi@ximian.com>
-
- * Type2Message.cs Type3Message.cs : let's just commit my updates to
- ntlm stuff here as I have done before ahead of sys.security.dll.
-
-2007-03-30 Atsushi Enomoto <atsushi@ximian.com>
-
- * Type1Message.cs : handle offsets per (assumed) document.
-
- (It should be re-examined in Mono.Security with SqlClient btw...)
-
-2007-03-27 Atsushi Enomoto
-
- This is temporary addition so do not expect further change here
- unless these changes are not merged into mcs/class/Mono.Security.
-
-2004-11-05 Sebastien Pouliot <sebastien@ximian.com>
-
- * MessageBase.cs: Fixed endian issue. Added globalization support.
- * Type1Message.cs: Fixed endian issue. Added globalization support.
- * Type2Message.cs: Fixed endian issue.
- * Type3Message.cs: Fixed endian issue. Added globalization support.
-
-2004-04-22 Sebastien Pouliot <sebastien@ximian.com>
-
- * ChallengeResponse.cs: FxCop-ized.
- * NtlmFlags.cs: FxCop-ized. CLS compliance.
- * Type1Message.cs: FxCop-ized.
- * Type3Message.cs: FxCop-ized.
-
-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.