[pgsqlclient-checkins] pgsqlclient_10/Mono.Security.Protocol.Tls changelog.txt,1.16,1.17
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-12-18 10:10:21
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls In directory sc8-pr-cvs1:/tmp/cvs-serv7947 Modified Files: changelog.txt Log Message: Updated changelog Index: changelog.txt =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/Mono.Security.Protocol.Tls/changelog.txt,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** changelog.txt 9 Dec 2003 19:25:04 -0000 1.16 --- changelog.txt 18 Dec 2003 10:10:17 -0000 1.17 *************** *** 1,292 **** ! TLS/SSL library - PgSqlClient - ADO.NET Data Provider for PostgreSQL 7.4+ ! --------------- ----------- ----------------------------------------- ! ! 2003-12-09 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Handshake.Client/TlsServerCertificate.cs: ! ! - Fixed message (but not working yet - we need RSA signing ! capabilitites with MD5SHA1 hash). ! ! * Mono.Security.Protocol.Handshake.Client/TlsServerCertificate.cs: ! ! - Retrict certificate validation to the first validation. ! ( real validation needs to be made using a chain ) ! ! - Improved domain validation by making a IP checking between ! the target host IP and the certificate domain IP. ! ! - Fixed error list handling on certificate validation. ! ! 2003-11-28 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! - Added new exceptions. ! ! 2003-11-23 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslServerStream.cs: ! ! - Added new SslServerStream class with empty methods. ! ! * Mono.Security.Protocol.Tls.Handshake.Server: ! ! - New directory with class definitions of handshake message classes ! for the server implementation. ! ! - Class names for server handshake messages are the same as for ! client implementation. ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! - Throw exception in constrctors when the targetHost or the streams are invalid. ! ! - Added correct exception throwing in read/write methods. ! ! - Added initial implementation of BeginRead and EndRead methods. ! ! * Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessage.cs: ! ! - Added new constructor. ! ! - Changed UpdateSession() method to Update() and replaced method ! name in derived classes. ! ! ------------------------- Updated Mono Sources ---------------------- ! ! 2003-11-22 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! ! - Better handling of padding bytes on message encryption. ! ! * Mono.Security.Protocol.Tls/TlsCipherSuiteFactory.cs: ! ! - Uncommented AES ciphersuites. ! ! ! 2003-11-21 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! - Add correct implementation of RaiseClientCertificateSelection ! ! 2003-11-17 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! Removed ReadByte method, use innerStream.ReadByte() method instead. ! ! 2003-11-13 Carlos Guzmán Álvarez <car...@te...> ! ! * Added implementation of an SslClientStream class similar to the MS .NET Framework 1.2 documentation. ! ! The next files are no more needed: ! ! - TlsSession.cs ! ! - TlsNetworkStream.cs ! ! - TlsSocket.cs ! ! - TlsSessionState.cs ! ! The next files are renamed: ! ! - TlsSessionSettings.cs -> TlsClientSettings.cs ! ! - TlsSessionContext.cs -> TlsContext.cs ! ! The next files are new: ! ! - SslClientStream.cs ( the name is non definitive yet ) ! ! The next files where changed to reflect the new canges: ! ! - TlsHandshakeMessage.cs ! ! - TlsClientCertificate.cs ! ! - TlsClientCertificateVerify.cs ! ! - TlsClientFinished.cs ! ! - TlsClientHello.cs ! ! - TlsClientKeyExchange.cs ! ! - TlsServerCertificate.cs ! ! - TlsServerCertificateRequest.cs ! ! - TlsServerFinished.cs ! ! - TlsServerHello.cs ! ! - TlsServerHelloDone.cs ! ! - TlsServerKeyExchange.cs ! ! - TlsAlert.cs ! ! - TlsCloseNotifyAlert.cs ! ! ! 2003-11-12 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Alerts/TlsAlert.cs: ! ! - Changes for give full error message only in debug mode ( Thanks to Sebastién Pouliot. ) ! ! * Mono.Security.Protocol.Tls/TlsProtocol.cs: ! ! - Renamed to SecurityProtocolType.cs ( for match .NET 1.2 ) ! ! * Mono.Security.Cryptography/MD5SHA1CryptoServiceProvider.cs: ! ! - Renamed to MD5SHA1.cs ( Thanks to Sebastién Pouliot. ) ! ! * Mono.Security.Cryptography/TlsCompressionMethod.cs: ! ! - Renamed to SecurityCompressionType. ! ! * Mono.Security.Protocol.Tls/CipherAlgorithmType.cs: ! * Mono.Security.Protocol.Tls/HashAlgorithmType.cs: ! * Mono.Security.Protocol.Tls/ExchangeAlgorithmType.cs: ! ! - New enumerations that matches .NET 1.2 definitions with some minor differences. ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsCipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSslCipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSessionContext.cs: ! ! - Added changes for make use of new enumerations. ! ! * Mono.Security.Protocol.Tls/TlsClientStream.cs: ! ! - Added new informative properties that matches .NET 1.2 SslClientStream ! ( Not all the properties are implemented yet ). ! ! ! 2003-11-10 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Alerts/TlsAlert.cs: ! ! - Fixed invalid alert message. ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSslCipherSuite.cs: ! * Mono.Security.Cryptography/HMAC.cs: ! * Mono.Security.Cryptography/MD5SHA1CryptoServiceProvider.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientCertificateVerify.cs: ! ! - Changed ( Thanks to Sebastién Pouliot for his feedback ) ! ! SHA1CryptoServiceProvider sha = new SHA1CryptoServiceProvider(); ! MD5CryptoServiceProvider sha = new MD5CryptoServiceProvider(); ! ! to ! ! HashAlgorithm sha = SHA1.Create(); ! HashAlgorithm md5 = MD5.Create(); ! ! ! 2003-11-04 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerCertificate.cs: ! ! - Commented server certificate signature verification. ! ! * Mono.Security.Protocol.Tls/TlsServerSettings.cs: ! ! - Renamed ServerCertificates property to Certificates. ! ! ! ----------------- Updated Mono Sources ----------------------- ! ! ! ! 2003-11-04 Carlos Guzmán Álvarez <car...@te...> ! ! * CipherSuite.cs: ! ! - Added custom padding for record encryption. ! ! ! 2003-11-03 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessages.cs: ! ! - Removed file. ! ! * Mono.Security.Protocol.Tls/TlsSslHandshakeHash.cs: ! ! - New class for handshake hashes calculation on SSL3 protocol. ! ! * Mono.Security.Protocol.Tls/TlsSessionContext.cs: ! ! - Fixed mac keys clearing for SSL3 protocol. ! ! * Mono.Security.Protocol.Tls/TlsSslCipherSuite.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientFinished.cs: ! ! - Added changes for make use of new TlsSslHandshakeHash class. ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerFinished.cs: ! ! - Added initial implementation for SSL3 protocol. ! ! * Mono.Security.Cryptography/MD5SHA1CryptoServiceProvider.cs: ! ! - New class for md5-sha hash calculation. ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientFinished.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerFinished.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerKeyExchange.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsHandshakeMessage.cs: ! ! - Make use of new MD5SHA1CryptoServiceProvider class. ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientCertificateVerify.cs: ! ! - Added initial implementation (not finished). ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerKeyExchange.cs: ! ! - Minor change to message processing. ! ! - Changed verify method name to verifySignature. ! ! * Mono.Security.Protocol.Tls/TlsSessionContext.cs: ! ! - Changed handshakeHashes member to be an TlsStream. ! ! 2003-10-28 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSessionSettings.cs: ! * Mono.Security.Protocol.Tls/TlsServerSettings.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientCertificateVerify.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientKeyExchange.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerCertificate.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerKeyExchange.cs: ! ! - Added changes for make use of X509 classes from mono. ! ! * Mono.Security/ASN1Convert.cs: ! * Mono.Security.X509/*.*: ! ! - New files from mono for allow basic certificate validation. ! ! ! 2003-10-21 Carlos Guzmán Álvarez <car...@te...> ! ! * Added specific changelog file for the TLS/SSL implementation. ! ! * Added partial implementation of SSL3 protocol. ! ! ! ! --- 1,301 ---- ! TLS/SSL library - PgSqlClient - ADO.NET Data Provider for PostgreSQL 7.4+ ! --------------- ----------- ----------------------------------------- ! ! 2003-12-14 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/RSASslSignatureFormatter.cs: ! * Mono.Security.Protocol.Tls/RSASslSignatureDeformatter.cs: ! ! - Added new classes for implement in the future RSA-SSL signatures. ! ! * Changed #region names in all source files. ! ! 2003-12-09 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Handshake.Client/TlsServerCertificate.cs: ! ! - Fixed message (but not working yet - we need RSA signing ! capabilitites with MD5SHA1 hash). ! ! * Mono.Security.Protocol.Handshake.Client/TlsServerCertificate.cs: ! ! - Retrict certificate validation to the first validation. ! ( real validation needs to be made using a chain ) ! ! - Improved domain validation by making a IP checking between ! the target host IP and the certificate domain IP. ! ! - Fixed error list handling on certificate validation. ! ! 2003-11-28 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! - Added new exceptions. ! ! 2003-11-23 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslServerStream.cs: ! ! - Added new SslServerStream class with empty methods. ! ! * Mono.Security.Protocol.Tls.Handshake.Server: ! ! - New directory with class definitions of handshake message classes ! for the server implementation. ! ! - Class names for server handshake messages are the same as for ! client implementation. ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! - Throw exception in constrctors when the targetHost or the streams are invalid. ! ! - Added correct exception throwing in read/write methods. ! ! - Added initial implementation of BeginRead and EndRead methods. ! ! * Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessage.cs: ! ! - Added new constructor. ! ! - Changed UpdateSession() method to Update() and replaced method ! name in derived classes. ! ! ------------------------- Updated Mono Sources ---------------------- ! ! 2003-11-22 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! ! - Better handling of padding bytes on message encryption. ! ! * Mono.Security.Protocol.Tls/TlsCipherSuiteFactory.cs: ! ! - Uncommented AES ciphersuites. ! ! ! 2003-11-21 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! - Add correct implementation of RaiseClientCertificateSelection ! ! 2003-11-17 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/SslClientStream.cs: ! ! Removed ReadByte method, use innerStream.ReadByte() method instead. ! ! 2003-11-13 Carlos Guzmán Álvarez <car...@te...> ! ! * Added implementation of an SslClientStream class similar to the MS .NET Framework 1.2 documentation. ! ! The next files are no more needed: ! ! - TlsSession.cs ! ! - TlsNetworkStream.cs ! ! - TlsSocket.cs ! ! - TlsSessionState.cs ! ! The next files are renamed: ! ! - TlsSessionSettings.cs -> TlsClientSettings.cs ! ! - TlsSessionContext.cs -> TlsContext.cs ! ! The next files are new: ! ! - SslClientStream.cs ( the name is non definitive yet ) ! ! The next files where changed to reflect the new canges: ! ! - TlsHandshakeMessage.cs ! ! - TlsClientCertificate.cs ! ! - TlsClientCertificateVerify.cs ! ! - TlsClientFinished.cs ! ! - TlsClientHello.cs ! ! - TlsClientKeyExchange.cs ! ! - TlsServerCertificate.cs ! ! - TlsServerCertificateRequest.cs ! ! - TlsServerFinished.cs ! ! - TlsServerHello.cs ! ! - TlsServerHelloDone.cs ! ! - TlsServerKeyExchange.cs ! ! - TlsAlert.cs ! ! - TlsCloseNotifyAlert.cs ! ! ! 2003-11-12 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Alerts/TlsAlert.cs: ! ! - Changes for give full error message only in debug mode ( Thanks to Sebastién Pouliot. ) ! ! * Mono.Security.Protocol.Tls/TlsProtocol.cs: ! ! - Renamed to SecurityProtocolType.cs ( for match .NET 1.2 ) ! ! * Mono.Security.Cryptography/MD5SHA1CryptoServiceProvider.cs: ! ! - Renamed to MD5SHA1.cs ( Thanks to Sebastién Pouliot. ) ! ! * Mono.Security.Cryptography/TlsCompressionMethod.cs: ! ! - Renamed to SecurityCompressionType. ! ! * Mono.Security.Protocol.Tls/CipherAlgorithmType.cs: ! * Mono.Security.Protocol.Tls/HashAlgorithmType.cs: ! * Mono.Security.Protocol.Tls/ExchangeAlgorithmType.cs: ! ! - New enumerations that matches .NET 1.2 definitions with some minor differences. ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsCipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSslCipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSessionContext.cs: ! ! - Added changes for make use of new enumerations. ! ! * Mono.Security.Protocol.Tls/TlsClientStream.cs: ! ! - Added new informative properties that matches .NET 1.2 SslClientStream ! ( Not all the properties are implemented yet ). ! ! ! 2003-11-10 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Alerts/TlsAlert.cs: ! ! - Fixed invalid alert message. ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSslCipherSuite.cs: ! * Mono.Security.Cryptography/HMAC.cs: ! * Mono.Security.Cryptography/MD5SHA1CryptoServiceProvider.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientCertificateVerify.cs: ! ! - Changed ( Thanks to Sebastién Pouliot for his feedback ) ! ! SHA1CryptoServiceProvider sha = new SHA1CryptoServiceProvider(); ! MD5CryptoServiceProvider sha = new MD5CryptoServiceProvider(); ! ! to ! ! HashAlgorithm sha = SHA1.Create(); ! HashAlgorithm md5 = MD5.Create(); ! ! ! 2003-11-04 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerCertificate.cs: ! ! - Commented server certificate signature verification. ! ! * Mono.Security.Protocol.Tls/TlsServerSettings.cs: ! ! - Renamed ServerCertificates property to Certificates. ! ! ! ----------------- Updated Mono Sources ----------------------- ! ! ! ! 2003-11-04 Carlos Guzmán Álvarez <car...@te...> ! ! * CipherSuite.cs: ! ! - Added custom padding for record encryption. ! ! ! 2003-11-03 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls.Handshake/TlsHandshakeMessages.cs: ! ! - Removed file. ! ! * Mono.Security.Protocol.Tls/TlsSslHandshakeHash.cs: ! ! - New class for handshake hashes calculation on SSL3 protocol. ! ! * Mono.Security.Protocol.Tls/TlsSessionContext.cs: ! ! - Fixed mac keys clearing for SSL3 protocol. ! ! * Mono.Security.Protocol.Tls/TlsSslCipherSuite.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientFinished.cs: ! ! - Added changes for make use of new TlsSslHandshakeHash class. ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerFinished.cs: ! ! - Added initial implementation for SSL3 protocol. ! ! * Mono.Security.Cryptography/MD5SHA1CryptoServiceProvider.cs: ! ! - New class for md5-sha hash calculation. ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientFinished.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerFinished.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerKeyExchange.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsHandshakeMessage.cs: ! ! - Make use of new MD5SHA1CryptoServiceProvider class. ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientCertificateVerify.cs: ! ! - Added initial implementation (not finished). ! ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerKeyExchange.cs: ! ! - Minor change to message processing. ! ! - Changed verify method name to verifySignature. ! ! * Mono.Security.Protocol.Tls/TlsSessionContext.cs: ! ! - Changed handshakeHashes member to be an TlsStream. ! ! 2003-10-28 Carlos Guzmán Álvarez <car...@te...> ! ! * Mono.Security.Protocol.Tls/CipherSuite.cs: ! * Mono.Security.Protocol.Tls/TlsSessionSettings.cs: ! * Mono.Security.Protocol.Tls/TlsServerSettings.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientCertificateVerify.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsClientKeyExchange.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerCertificate.cs: ! * Mono.Security.Protocol.Tls.Handshake.Client/TlsServerKeyExchange.cs: ! ! - Added changes for make use of X509 classes from mono. ! ! * Mono.Security/ASN1Convert.cs: ! * Mono.Security.X509/*.*: ! ! - New files from mono for allow basic certificate validation. ! ! ! 2003-10-21 Carlos Guzmán Álvarez <car...@te...> ! ! * Added specific changelog file for the TLS/SSL implementation. ! ! * Added partial implementation of SSL3 protocol. ! ! ! ! |