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/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/ChangeLog')
-rw-r--r--mcs/class/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/ChangeLog43
1 files changed, 0 insertions, 43 deletions
diff --git a/mcs/class/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/ChangeLog b/mcs/class/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/ChangeLog
deleted file mode 100644
index 17995227748..00000000000
--- a/mcs/class/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/ChangeLog
+++ /dev/null
@@ -1,43 +0,0 @@
-2007-05-22 Sebastien Pouliot <sebastien@ximian.com>
-
- * TlsClientCertificate.cs: Add chain support for x.509 client
- certificates. Based on Roy Versteeg patch to fix #80557.
-
-2007-05-07 Sebastien Pouliot <sebastien@ximian.com>
-
- * TlsClientCertificate.cs: A client certficate with a RSA public key
- can only be used, protocol wise, to sign. Which means we should always
- be checking it's keyUsage for digitalSignature. Fix for bug #81511
-
-2006-09-11 Sebastien Pouliot <sebastien@ximian.com>
-
- * TlsClientCertificate.cs: Use Negotiating.Cipher instead of Cipher.
- Fix reading the message length if it's zero (in that case it's not
- present two times).
- * TlsClientFinished.cs: Use Current.Cipher instead of Cipher. Use
- Compare to test client and server digests equality.
- * TlsClientHello.cs: Use Negotiating.Cipher instead of Cipher.
- * TlsClientKeyExchange.cs: Use Negotiating.Cipher instead of Cipher.
- * TlsServerFinished.cs: Use Current.Cipher instead of Cipher.
- * TlsServerHello.cs: Use Negotiating.Cipher instead of Cipher.
-
-2005-07-01 Sebastien Pouliot <sebastien@ximian.com>
-
- * TlsClientCertificate.cs: Fix decoding (extra length) and for null
- (no certificates). Add basic client certificate validations before
- calling the callback (which can override the default decision).
- * TlsClientCertificateVerify.cs: Fix signature verification (the first
- two bytes are the length of the signature).
- * TlsServerCertificateRequest.cs: Sent the list of trusted root DNs.
-
-2004-11-10 Sebastien Pouliot <sebastien@ximian.com>
-
- * TlsClientFinished.cs: ProcessAsTls1 - get out of the loop if PRF are
- different.
-
-2004-09-23 Sebastien Pouliot <sebastien@ximian.com>
-
- * TlsClientKeyExchange.cs: Removed .Clear call on private key as itn't
- ours (but only a reference). It also requires the callback to recreate
- a new key object each time (which is worse). This also implies that
- the caller (implementing the callback) is responsible to clear it.