[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-23 12:31:46
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31444 Modified Files: TlsHandshakeMessage.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: - Added changes for make use of the new Context implementation. Index: TlsHandshakeMessage.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security/Mono.Security/Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessage.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsHandshakeMessage.cs 17 Feb 2004 17:51:26 -0000 1.2 --- TlsHandshakeMessage.cs 23 Feb 2004 12:18:13 -0000 1.3 *************** *** 24,28 **** using System; - // using Mono.Security.Protocol.Tls; namespace Mono.Security.Protocol.Tls.Handshake --- 24,27 ---- *************** *** 32,36 **** #region Fields ! private TlsContext context; private TlsHandshakeType handshakeType; private TlsContentType contentType; --- 31,35 ---- #region Fields ! private Context context; private TlsHandshakeType handshakeType; private TlsContentType contentType; *************** *** 40,44 **** #region Properties ! public TlsContext Context { get { return this.context; } --- 39,43 ---- #region Properties ! public Context Context { get { return this.context; } *************** *** 60,64 **** public TlsHandshakeMessage( ! TlsContext context, TlsHandshakeType handshakeType) : this(context, handshakeType, TlsContentType.Handshake) --- 59,63 ---- public TlsHandshakeMessage( ! Context context, TlsHandshakeType handshakeType) : this(context, handshakeType, TlsContentType.Handshake) *************** *** 67,71 **** public TlsHandshakeMessage( ! TlsContext context, TlsHandshakeType handshakeType, TlsContentType contentType) : base() --- 66,70 ---- public TlsHandshakeMessage( ! Context context, TlsHandshakeType handshakeType, TlsContentType contentType) : base() *************** *** 80,84 **** public TlsHandshakeMessage( ! TlsContext context, TlsHandshakeType handshakeType, byte[] data) : base(data) --- 79,83 ---- public TlsHandshakeMessage( ! Context context, TlsHandshakeType handshakeType, byte[] data) : base(data) |