[pgsqlclient-checkins] pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handsha
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2004-02-14 23:59:45
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Client In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29146 Modified Files: TlsServerCertificate.cs Log Message: Removed test code Index: TlsServerCertificate.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Client/TlsServerCertificate.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsServerCertificate.cs 10 Feb 2004 09:45:30 -0000 1.1 --- TlsServerCertificate.cs 14 Feb 2004 23:52:54 -0000 1.2 *************** *** 93,125 **** certificates.Add(certificate); - /* - System.Text.StringBuilder b = new System.Text.StringBuilder(); - - b.AppendFormat( - "\r\nCertificate {0} | Issuer name {1} | Self signed {2} ({3} bytes) \r\n", - certificates.Count, - certificate.IssuerName, - certificate.IsSelfSigned, - buffer.Length); - - b.Append("Contents: \r\n"); - - int byteCount = 0; - for (int i = 0; i < buffer.Length; i++) - { - if (byteCount == 25) - { - byteCount = 0; - b.Append("\r\n"); - } - - b.AppendFormat("{0} ", buffer[i].ToString("x2")); - - byteCount++; - } - - System.Diagnostics.Trace.Write(b.ToString()); - */ - readed += certLength; } --- 93,96 ---- |