Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: openssl/CHANGES.SSLeay

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/CHANGES ('k') | openssl/Configure » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This file contains the changes for the SSLeay library up to version 1 This file contains the changes for the SSLeay library up to version
2 0.9.0b. For later changes, see the file "CHANGES". 2 0.9.0b. For later changes, see the file "CHANGES".
3 3
4 SSLeay CHANGES 4 SSLeay CHANGES
5 ______________ 5 ______________
6 6
7 Changes between 0.8.x and 0.9.0b 7 Changes between 0.8.x and 0.9.0b
8 8
9 10-Apr-1998 9 10-Apr-1998
10 10
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 - Prime generation spead up %25 (512 bit prime, pentium pro linux) 141 - Prime generation spead up %25 (512 bit prime, pentium pro linux)
142 by using montgomery multiplication in the prime number test. 142 by using montgomery multiplication in the prime number test.
143 143
144 11-Sep-97 144 11-Sep-97
145 - Ugly bug in ssl3_write_bytes(). Basically if application land 145 - Ugly bug in ssl3_write_bytes(). Basically if application land
146 does a SSL_write(ssl,buf,len) where len > 16k, the SSLv3 write code 146 does a SSL_write(ssl,buf,len) where len > 16k, the SSLv3 write code
147 did not check the size and tried to copy the entire buffer. 147 did not check the size and tried to copy the entire buffer.
148 This would tend to cause memory overwrites since SSLv3 has 148 This would tend to cause memory overwrites since SSLv3 has
149 a maximum packet size of 16k. If your program uses 149 a maximum packet size of 16k. If your program uses
150 buffers <= 16k, you would probably never see this problem. 150 buffers <= 16k, you would probably never see this problem.
151 - Fixed a new errors that were cause by malloc() not returning 151 - Fixed a few errors that were cause by malloc() not returning
152 0 initialised memory.. 152 0 initialised memory..
153 - SSL_OP_NETSCAPE_CA_DN_BUG was being switched on when using 153 - SSL_OP_NETSCAPE_CA_DN_BUG was being switched on when using
154 SSL_CTX_set_options(ssl_ctx,SSL_OP_ALL); which was a bad thing 154 SSL_CTX_set_options(ssl_ctx,SSL_OP_ALL); which was a bad thing
155 since this flags stops SSLeay being able to handle client 155 since this flags stops SSLeay being able to handle client
156 cert requests correctly. 156 cert requests correctly.
157 157
158 08-Sep-97 158 08-Sep-97
159 - SSL_SESS_CACHE_NO_INTERNAL_LOOKUP option added. When switched 159 - SSL_SESS_CACHE_NO_INTERNAL_LOOKUP option added. When switched
160 on, the SSL server routines will not use a SSL_SESSION that is 160 on, the SSL server routines will not use a SSL_SESSION that is
161 held in it's cache. This in intended to be used with the session-id 161 held in it's cache. This in intended to be used with the session-id
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 written but need testing. The *_sign() and *_verify() functions are 959 written but need testing. The *_sign() and *_verify() functions are
960 rock solid. 960 rock solid.
961 - PEM. Doing this and PKCS#7 have been dependant on the distributed 961 - PEM. Doing this and PKCS#7 have been dependant on the distributed
962 x509 heirachy problem. I started implementing my ideas, got 962 x509 heirachy problem. I started implementing my ideas, got
963 distracted writing a CA program and then ran out of time. I provide 963 distracted writing a CA program and then ran out of time. I provide
964 the functionality of RSAref at least. 964 the functionality of RSAref at least.
965 - Re work the asm. code for the x86. I've changed by low level bignum 965 - Re work the asm. code for the x86. I've changed by low level bignum
966 interface again, so I really need to tweak the x86 stuff. gcc is 966 interface again, so I really need to tweak the x86 stuff. gcc is
967 good enough for the other boxes. 967 good enough for the other boxes.
968 968
OLDNEW
« no previous file with comments | « openssl/CHANGES ('k') | openssl/Configure » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698