[pgsqlclient-checkins] pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Sec
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-10-21 20:16:55
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls.Handshake In directory sc8-pr-cvs1:/tmp/cvs-serv7714 Modified Files: TlsHandshakeHashes.cs Log Message: Added partial implementation of SSL3 protocol Index: TlsHandshakeHashes.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls/Mono.Security.Protocol.Tls.Handshake/TlsHandshakeHashes.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TlsHandshakeHashes.cs 14 Oct 2003 10:14:10 -0000 1.2 --- TlsHandshakeHashes.cs 21 Oct 2003 20:06:14 -0000 1.3 *************** *** 38,41 **** --- 38,50 ---- #endregion + #region PROPERTIES + + internal byte[] Messages + { + get { return messages.ToArray(); } + } + + #endregion + #region CONSTRUCTORS |