File: ChangeLog

package info (click to toggle)
mono 1.2.2.1-1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 142,720 kB
  • ctags: 256,408
  • sloc: cs: 1,495,736; ansic: 249,442; sh: 18,327; xml: 12,463; makefile: 5,046; perl: 1,248; asm: 635; yacc: 285; sql: 7
file content (32 lines) | stat: -rw-r--r-- 1,521 bytes parent folder | download | duplicates (2)
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
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.