Thread: [pgsqlclient-checkins] pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handsha
Status: Inactive
Brought to you by:
carlosga_fb
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18079 Modified Files: TlsClientCertificate.cs TlsClientCertificateVerify.cs TlsClientFinished.cs TlsClientHello.cs TlsClientKeyExchange.cs TlsServerCertificate.cs TlsServerCertificateRequest.cs TlsServerFinished.cs TlsServerHello.cs TlsServerHelloDone.cs TlsServerKeyExchange.cs Log Message: 2004-03-03 Carlos Guzman Alvarez <car...@te...> * Mono.Security.Protocol.Tls/SslServerStream.cs: - Implemented flow for the server handshake. * Mono.Security.Protocol.Tls/Ciphersuite.cs: * Mono.Security.Protocol.Tls/TlsCiphersuite.cs: * Mono.Security.Protocol.Tls/ClientRecordProtocol.cs: * Mono.Security.Protocol.Tls/ServerRecordProtocol.cs: * Mono.Security.Protocol.Tls/SslClientStream.cs: * Mono.Security.Protocol.Tls/TlsServerSettings.cs: * Mono.Security.Protocol.Tls/TlsClientSettings.cs: * Mono.Security.Protocol.Tls/ClientContext.cs: * Mono.Security.Protocol.Tls.Handshake.Client/*.cs: * Mono.Security.Protocol.Tls.Handshake.Server/*.cs: - Changes for make use of the renamed classes and enums. * Mono.Security.Protocol.Tls.Handshake/TlsHandshakeType.cs: - Renamed to HandshakeType.cs (Enum and file) * Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessage.cs: - Renamed to HandshakeMessage.cs (Class and file) * Mono.Security.Protocol.Tls.Handshake/TlsClientCertificateType.cs: - Renamed to ClientCertificateType.cs (Enum and file) * Mono.Security.Protocol.Tls.Alerts/TlsAlert.cs: - Renamed to Alert (Class, enums and file) * Mono.Security.Protocol.Tls/TlsContentType.cs: - Renamed to ContentType.cs ( Enum and file ) * Mono.Security.Protocol.Tls/TlsCiphersuiteCollection.cs: - Renamed to CiphersuiteCollection.cs ( Class and file ) * Mono.Security.Protocol.Tls/TlsCiphersuiteFactory.cs: - Renamed to CiphersuiteCollection.cs ( Class and file ) * Mono.Security.Protocol.Tls/TlsSslHandshakeHash.cs: - Renamed to SslHandshakeHash.cs ( Class and file ) * Mono.Security.Protocol.Tls/TlsSslCipherSuite.cs: - Renamed to SslCipherSuite.cs ( Class and file ) Index: TlsClientCertificate.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsClientCertificate.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsClientCertificate.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsClientCertificate.cs 3 Mar 2004 16:15:42 -0000 1.3 *************** *** 29,38 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientCertificate : TlsHandshakeMessage { #region Constructors public TlsClientCertificate(Context context, byte[] buffer) ! : base(context, TlsHandshakeType.Certificate, buffer) { } --- 29,38 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientCertificate : HandshakeMessage { #region Constructors public TlsClientCertificate(Context context, byte[] buffer) ! : base(context, HandshakeType.Certificate, buffer) { } Index: TlsClientCertificateVerify.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsClientCertificateVerify.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsClientCertificateVerify.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsClientCertificateVerify.cs 3 Mar 2004 16:15:42 -0000 1.3 *************** *** 31,40 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientCertificateVerify : TlsHandshakeMessage { #region Constructors public TlsClientCertificateVerify(Context context, byte[] buffer) ! : base(context, TlsHandshakeType.Finished, buffer) { } --- 31,40 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientCertificateVerify : HandshakeMessage { #region Constructors public TlsClientCertificateVerify(Context context, byte[] buffer) ! : base(context, HandshakeType.Finished, buffer) { } Index: TlsClientFinished.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsClientFinished.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsClientFinished.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsClientFinished.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 30,39 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientFinished : TlsHandshakeMessage { #region Constructors public TlsClientFinished(Context context, byte[] buffer) ! : base(context, TlsHandshakeType.Finished, buffer) { } --- 30,39 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientFinished : HandshakeMessage { #region Constructors public TlsClientFinished(Context context, byte[] buffer) ! : base(context, HandshakeType.Finished, buffer) { } Index: TlsClientHello.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsClientHello.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsClientHello.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsClientHello.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 28,37 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientHello : TlsHandshakeMessage { #region Constructors public TlsClientHello(Context context, byte[] buffer) ! : base(context, TlsHandshakeType.ClientHello, buffer) { } --- 28,37 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientHello : HandshakeMessage { #region Constructors public TlsClientHello(Context context, byte[] buffer) ! : base(context, HandshakeType.ClientHello, buffer) { } Index: TlsClientKeyExchange.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsClientKeyExchange.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsClientKeyExchange.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsClientKeyExchange.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 29,33 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientKeyExchange : TlsHandshakeMessage { #region Constructors --- 29,33 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsClientKeyExchange : HandshakeMessage { #region Constructors *************** *** 35,39 **** public TlsClientKeyExchange (Context context, byte[] buffer) : base(context, ! TlsHandshakeType.ClientKeyExchange, buffer) { --- 35,39 ---- public TlsClientKeyExchange (Context context, byte[] buffer) : base(context, ! HandshakeType.ClientKeyExchange, buffer) { Index: TlsServerCertificate.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsServerCertificate.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsServerCertificate.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsServerCertificate.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 34,43 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerCertificate : TlsHandshakeMessage { #region Constructors public TlsServerCertificate(Context context) ! : base(context, TlsHandshakeType.Certificate) { } --- 34,43 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerCertificate : HandshakeMessage { #region Constructors public TlsServerCertificate(Context context) ! : base(context, HandshakeType.Certificate) { } Index: TlsServerCertificateRequest.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsServerCertificateRequest.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsServerCertificateRequest.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsServerCertificateRequest.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 29,38 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerCertificateRequest : TlsHandshakeMessage { #region Constructors public TlsServerCertificateRequest(Context context) ! : base(context, TlsHandshakeType.ServerHello) { } --- 29,38 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerCertificateRequest : HandshakeMessage { #region Constructors public TlsServerCertificateRequest(Context context) ! : base(context, HandshakeType.ServerHello) { } Index: TlsServerFinished.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsServerFinished.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsServerFinished.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsServerFinished.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 30,39 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerFinished : TlsHandshakeMessage { #region Constructors public TlsServerFinished(Context context) ! : base(context, TlsHandshakeType.ServerHello) { } --- 30,39 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerFinished : HandshakeMessage { #region Constructors public TlsServerFinished(Context context) ! : base(context, HandshakeType.ServerHello) { } Index: TlsServerHello.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsServerHello.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsServerHello.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsServerHello.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 27,36 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerHello : TlsHandshakeMessage { #region Constructors public TlsServerHello(Context context) ! : base(context, TlsHandshakeType.ServerHello) { } --- 27,36 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerHello : HandshakeMessage { #region Constructors public TlsServerHello(Context context) ! : base(context, HandshakeType.ServerHello) { } Index: TlsServerHelloDone.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsServerHelloDone.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsServerHelloDone.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsServerHelloDone.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 27,36 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerHelloDone : TlsHandshakeMessage { #region Constructors public TlsServerHelloDone(Context context) ! : base(context, TlsHandshakeType.ServerHello) { } --- 27,36 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerHelloDone : HandshakeMessage { #region Constructors public TlsServerHelloDone(Context context) ! : base(context, HandshakeType.ServerHello) { } Index: TlsServerKeyExchange.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake.Server/TlsServerKeyExchange.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsServerKeyExchange.cs 23 Feb 2004 12:19:31 -0000 1.2 --- TlsServerKeyExchange.cs 3 Mar 2004 16:15:43 -0000 1.3 *************** *** 31,40 **** namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerKeyExchange : TlsHandshakeMessage { #region Constructors public TlsServerKeyExchange(Context context) ! : base(context, TlsHandshakeType.ServerKeyExchange) { } --- 31,40 ---- namespace Mono.Security.Protocol.Tls.Handshake.Server { ! internal class TlsServerKeyExchange : HandshakeMessage { #region Constructors public TlsServerKeyExchange(Context context) ! : base(context, HandshakeType.ServerKeyExchange) { } |