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-serv31654 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-02-23 Carlos Guzman Alvarez <car...@te...> * Mono.Security.Protocol.Tls/TlsContext.cs: - Removed file, implementation is now present in: Context.cs ClientContext.cs ServerContext.cs * Mono.Security.Protocol.Tls/Context.cs: * Mono.Security.Protocol.Tls/ClientContext.cs: * Mono.Security.Protocol.Tls/ServerContext.cs: * Mono.Security.Protocol.Tls/ServerRecordProtocol.cs: - New classes. * Mono.Security.Protocol.Tls/SslServerStream.cs: - Added implementation for properties, and read/write methods as in SslClientStream. - doHandshake method is not implemented yet. * Mono.Security.Protocol.Tls/SslClientStream.cs: * Mono.Security.Protocol.Tls/RecordProtocol.cs: * Mono.Security.Protocol.Tls/Ciphersuite.cs: * Mono.Security.Protocol.Tls.Alerts/TlsAlert.cs: * Mono.Security.Protocol.Tls.Alerts/TlsCloseNotifyAlert.cs: * Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessage.cs: * Mono.Security.Protocol.Tls.Handshake.Client/*.cs: - Added changes for make use of the new Context implementation. 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsClientCertificate.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsClientCertificate.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 33,37 **** #region Constructors ! public TlsClientCertificate(TlsContext context, byte[] buffer) : base(context, TlsHandshakeType.Certificate, buffer) { --- 33,37 ---- #region Constructors ! public TlsClientCertificate(Context context, byte[] buffer) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsClientCertificateVerify.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsClientCertificateVerify.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 35,39 **** #region Constructors ! public TlsClientCertificateVerify(TlsContext context, byte[] buffer) : base(context, TlsHandshakeType.Finished, buffer) { --- 35,39 ---- #region Constructors ! public TlsClientCertificateVerify(Context context, byte[] buffer) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsClientFinished.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsClientFinished.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 34,38 **** #region Constructors ! public TlsClientFinished(TlsContext context, byte[] buffer) : base(context, TlsHandshakeType.Finished, buffer) { --- 34,38 ---- #region Constructors ! public TlsClientFinished(Context context, byte[] buffer) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsClientHello.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsClientHello.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 32,36 **** #region Constructors ! public TlsClientHello(TlsContext context, byte[] buffer) : base(context, TlsHandshakeType.ClientHello, buffer) { --- 32,36 ---- #region Constructors ! public TlsClientHello(Context context, byte[] buffer) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsClientKeyExchange.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsClientKeyExchange.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 33,37 **** #region Constructors ! public TlsClientKeyExchange (TlsContext context, byte[] buffer) : base(context, TlsHandshakeType.ClientKeyExchange, --- 33,37 ---- #region Constructors ! public TlsClientKeyExchange (Context context, byte[] buffer) : base(context, TlsHandshakeType.ClientKeyExchange, 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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsServerCertificate.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsServerCertificate.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 38,42 **** #region Constructors ! public TlsServerCertificate(TlsContext context) : base(context, TlsHandshakeType.Certificate) { --- 38,42 ---- #region Constructors ! public TlsServerCertificate(Context context) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsServerCertificateRequest.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsServerCertificateRequest.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 33,37 **** #region Constructors ! public TlsServerCertificateRequest(TlsContext context) : base(context, TlsHandshakeType.ServerHello) { --- 33,37 ---- #region Constructors ! public TlsServerCertificateRequest(Context context) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsServerFinished.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsServerFinished.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 34,38 **** #region Constructors ! public TlsServerFinished(TlsContext context) : base(context, TlsHandshakeType.ServerHello) { --- 34,38 ---- #region Constructors ! public TlsServerFinished(Context context) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsServerHello.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsServerHello.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 31,35 **** #region Constructors ! public TlsServerHello(TlsContext context) : base(context, TlsHandshakeType.ServerHello) { --- 31,35 ---- #region Constructors ! public TlsServerHello(Context context) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsServerHelloDone.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsServerHelloDone.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 31,35 **** #region Constructors ! public TlsServerHelloDone(TlsContext context) : base(context, TlsHandshakeType.ServerHello) { --- 31,35 ---- #region Constructors ! public TlsServerHelloDone(Context context) : base(context, TlsHandshakeType.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.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TlsServerKeyExchange.cs 10 Feb 2004 10:17:49 -0000 1.1 --- TlsServerKeyExchange.cs 23 Feb 2004 12:19:31 -0000 1.2 *************** *** 35,39 **** #region Constructors ! public TlsServerKeyExchange(TlsContext context) : base(context, TlsHandshakeType.ServerKeyExchange) { --- 35,39 ---- #region Constructors ! public TlsServerKeyExchange(Context context) : base(context, TlsHandshakeType.ServerKeyExchange) { |