[pgsqlclient-checkins] pgsqlclient_10 changelog.txt,1.51,1.52
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-10-20 11:37:36
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10 In directory sc8-pr-cvs1:/tmp/cvs-serv30039 Modified Files: changelog.txt Log Message: Updated CHANGELOG.TXT Index: changelog.txt =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/changelog.txt,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** changelog.txt 19 Oct 2003 14:09:15 -0000 1.51 --- changelog.txt 20 Oct 2003 10:01:55 -0000 1.52 *************** *** 3,6 **** --- 3,33 ---- + 2003-10-20 Carlos Guzmán Álvarez <car...@te...> + + * TLS implementation: + + - Fixed padding length calculation on record encryption. + + - Abstracted CipherSuite classes for allow work with other protocol versions. + + - Added new files : + + TlsAbstractCipherSuite.cs + + TlsSslCipherSuite.cs + + TlsCipherSuiteFactory.cs + + - Added new cipher suites definitions based on RFC3268 - (http://www.ietf.org/rfc/rfc3268.txt) + + - Added two new supported ciphersuites for TLS protocol: + + TLS_RSA_WITH_AES_256_CBC_SHA + + TLS_RSA_WITH_AES_128_CBC_SHA + + - Moved key generation stuff to specific cipher suite classes. + + 2003-10-19 Carlos Guzmán Álvarez <car...@te...> |