2005-07-01 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / Mono.Security / Mono.Security.Protocol.Tls.Handshake.Server / ChangeLog
1 2005-07-01  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * TlsClientCertificate.cs: Fix decoding (extra length) and for null
4          (no certificates). Add basic client certificate validations before
5         calling the callback (which can override the default decision).
6         * TlsClientCertificateVerify.cs: Fix signature verification (the first
7         two bytes are the length of the signature).
8         * TlsServerCertificateRequest.cs: Sent the list of trusted root DNs.
9
10 2004-11-10  Sebastien Pouliot  <sebastien@ximian.com>
11
12         * TlsClientFinished.cs: ProcessAsTls1 - get out of the loop if PRF are
13         different.
14
15 2004-09-23  Sebastien Pouliot  <sebastien@ximian.com>
16
17         * TlsClientKeyExchange.cs: Removed .Clear call on private key as itn't
18         ours (but only a reference). It also requires the callback to recreate
19         a new key object each time (which is worse). This also implies that 
20         the caller (implementing the callback) is responsible to clear it.