[pgsqlclient-checkins] pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Sec
Status: Inactive
Brought to you by:
carlosga_fb
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls.Handshake/Mono.Security.Protocol.Tls.Handshake.Client In directory sc8-pr-cvs1:/tmp/cvs-serv29040 Modified Files: TlsServerKeyExchange.cs Log Message: 2003-11-04 Carlos Guzmán Álvarez <car...@te...> * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerCertificate.cs: - Commented server certificate signature verification. Index: TlsServerKeyExchange.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls.Handshake/Mono.Security.Protocol.Tls.Handshake.Client/TlsServerKeyExchange.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TlsServerKeyExchange.cs 3 Nov 2003 16:21:25 -0000 1.10 --- TlsServerKeyExchange.cs 7 Nov 2003 10:06:23 -0000 1.11 *************** *** 106,110 **** // Verify Signature ! X509Certificate certificate = this.Session.Context.ServerSettings.ServerCertificates[0]; RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(rsaParams.Modulus.Length << 3); --- 106,110 ---- // Verify Signature ! X509Certificate certificate = this.Session.Context.ServerSettings.Certificates[0]; RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(rsaParams.Modulus.Length << 3); |