Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help


sort by:
RevisionAuthorDateMessageCommit Date
bfc3424 Eric Young02 April 2014, 18:50:33 UTCFix base64 decoding bug. A short PEM encoded sequence if passed to the BIO, and the file had 2 \n following would fail. PR#3289 (cherry picked from commit 10378fb5f4c67270b800e8f7c600cd0548874811)02 April 2014, 18:57:27 UTC
1c65936 Dr. Stephen Henson12 March 2014, 14:43:52 UTCupdate NEWS12 March 2014, 14:43:52 UTC
40acdb1 Dr. Stephen Henson12 March 2014, 14:35:54 UTCUpdate ordinals. Use a previously unused value as we will be updating multiple released branches. (cherry picked from commit 0737acd2a8cc688902b5151cab5dc6737b82fb96)12 March 2014, 14:41:37 UTC
4b7a4ba Dr. Stephen Henson12 March 2014, 14:16:19 UTCFix for CVE-2014-0076 Fix for the attack described in the paper "Recovering OpenSSL ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack" by Yuval Yarom and Naomi Benger. Details can be obtained from: http://eprint.iacr.org/2014/140 Thanks to Yuval Yarom and Naomi Benger for discovering this flaw and to Yuval Yarom for supplying a fix. (cherry picked from commit 2198be3483259de374f91e57d247d0fc667aef29) Conflicts: CHANGES12 March 2014, 14:19:54 UTC
e0660c6 Dr. Stephen Henson10 March 2014, 15:45:30 UTCtypo (cherry picked from commit a029788b0e0c19cee4007cc1f73201cf2c13addf)10 March 2014, 15:48:43 UTC
b4ada74 Dr. Stephen Henson07 March 2014, 19:04:45 UTCRemove -WX option from debug-VC-WIN3207 March 2014, 19:07:51 UTC
a93d952 Andy Polyakov07 March 2014, 10:02:25 UTCengines/ccgost/gosthash.c: simplify and avoid SEGV. PR: 3275 (cherry picked from commit ea38f020492042bc1d1adc26ef197b0b9cadf968)07 March 2014, 10:03:51 UTC
5b56fec Andy Polyakov27 February 2014, 11:35:02 UTCMakefile.org: mask touch's exit code [but don't let it mask make's]. PR: 3269 (cherry picked from commit 2f34088e5e9ff02ad20df50571073abac04f1431)27 February 2014, 11:37:08 UTC
32171e4 Dr. Stephen Henson26 February 2014, 15:28:20 UTCFix for WIN32 builds with KRB5 (cherry picked from commit 3eddd1706a30cdf3dc9278692d8ee9038eac8a0d)26 February 2014, 15:33:09 UTC
48e6eda Andy Polyakov25 February 2014, 21:21:54 UTCssl/t1_enc.c: check EVP_MD_CTX_copy return value. PR: 3201 (cherry picked from commit 03da57fe14f2de5bde9d4496a2ae9a4ae8879f88)25 February 2014, 21:24:24 UTC
0696071 Dr. Stephen Henson25 February 2014, 14:27:18 UTCupdate NEWS25 February 2014, 14:27:18 UTC
caf55bf Dr. Stephen Henson25 February 2014, 12:11:22 UTCAvoid Windows 8 Getversion deprecated errors. Windows 8 SDKs complain that GetVersion() is deprecated. We only use GetVersion like this: (GetVersion() < 0x80000000) which checks if the Windows version is NT based. Use a macro check_winnt() which uses GetVersion() on older SDK versions and true otherwise. (cherry picked from commit a4cc3c8041104896d51ae12ef7b678c31808ce52)25 February 2014, 13:42:25 UTC
ce36310 Andy Polyakov24 February 2014, 18:29:49 UTCms/do_win64a.bat: forward to NUL, not NUL:. Allegedly formwarding to NUL: sometimes creates NUL file in file system. PR: 3250 (cherry picked from commit 63aff3001ef6ba2ac376cd3f237fb0d0b3e77f30)24 February 2014, 18:33:54 UTC
3ae1b53 Andy Polyakov24 February 2014, 15:54:10 UTCBC-32.pl: pre-1.0.2-specific refresh for Borland C. PR: 3251 Suggested by: Thorsten Sch\xf6ning24 February 2014, 15:54:10 UTC
79bb005 Andy Polyakov24 February 2014, 15:42:40 UTCBC-32.pl: refresh Borland C support. PR: 3251 Suggested by: Thorsten Sch\xf6ning (cherry picked from commit 779c51c6446f384c2f2a7bd5cc4c3e0366baf628)24 February 2014, 15:49:10 UTC
c4b16dd Andy Polyakov24 February 2014, 14:16:56 UTCx509/by_dir.c: fix run-away pointer (and potential SEGV) when adding duplicates in add_cert_dir. PR: 3261 Reported by: Marian Done (cherry picked from commit 758954e0d8232d370ed72b7f86640e40443e1778)24 February 2014, 14:23:46 UTC
deb3b08 Dr. Stephen Henson15 February 2014, 17:16:19 UTCAdd /fixed flag for FIPS links where appropriate. (cherry picked from commit c55fef76f77aa54e85ca534785b2b19cebbe940c) Conflicts: util/pl/VC-32.pl15 February 2014, 20:30:08 UTC
b45b3ef Dr. Stephen Henson15 February 2014, 01:27:56 UTCRemove duplicate statement. (cherry picked from commit 5a7652c3e585e970e5b778074c92e617e48fde38)15 February 2014, 01:29:36 UTC
e420060 Kurt Roeckx23 December 2013, 18:45:26 UTCUse defaults bits in req when not given If you use "-newkey rsa" it's supposed to read the default number of bits from the config file. However the value isn't used to generate the key, but it does print it's generating such a key. The set_keygen_ctx() doesn't call EVP_PKEY_CTX_set_rsa_keygen_bits() and you end up with the default set in pkey_rsa_init() (1024). Afterwards the number of bits gets read from the config file, but nothing is done with that anymore. We now read the config first and use the value from the config file when no size is given. PR: 2592 (cherry picked from commit 3343220327664680420d4068e1fbe46d2236f1b0)14 February 2014, 22:35:39 UTC
d8ec8a4 Kurt Roeckx23 December 2013, 18:41:28 UTCFix additional pod errors with numbered items. (cherry picked from commit e547c45f1c74e976656c042ec9d873f6eea0e756)14 February 2014, 22:35:39 UTC
040ed7b Scott Schaefer23 December 2013, 18:28:30 UTCFix various spelling errors (cherry picked from commit 2b4ffc659eabec29f76821f0ac624a2b8c19e4c7)14 February 2014, 22:35:39 UTC
c76e5b0 Scott Schaefer23 December 2013, 18:01:38 UTCDocument pkcs12 -password behavior apps/pkcs12.c accepts -password as an argument. The document author almost certainly meant to write "-password, -passin". However, that is not correct, either. Actually the code treats -password as equivalent to -passin, EXCEPT when -export is also specified, in which case -password as equivalent to -passout. (cherry picked from commit 856c6dfb09d69fc82ada2611c6cd792dfc60e355)14 February 2014, 22:35:39 UTC
0071215 Dr. Stephen Henson13 December 2013, 14:41:32 UTCBackport TLS padding extension from master. (cherry picked from commit 8c6d8c2a498146992123ef5407d7ba01a1e7224d) Conflicts: CHANGES ssl/t1_lib.c14 February 2014, 22:19:03 UTC
4a55631 Dr. Stephen Henson13 December 2013, 14:41:32 UTCBackport TLS padding extension from master. (cherry picked from commit 8c6d8c2a498146992123ef5407d7ba01a1e7224d) Conflicts: CHANGES ssl/t1_lib.c05 February 2014, 15:42:04 UTC
19a6857 Dr. Stephen Henson03 February 2014, 14:13:04 UTCAdd quotes as CC can contain spaces. PR#3253 (cherry picked from commit 7f6e09b5316928a9da24d2f695d1885a26dd38ec)03 February 2014, 14:14:09 UTC
f21e6b6 Dr. Stephen Henson29 January 2014, 00:59:35 UTCClarify docs. Remove reference to ERR_TXT_MALLOCED in the error library as that is only used internally. Indicate that returned error data must not be freed. (cherry picked from commit f2d678e6e89b6508147086610e985d4e8416e867)29 January 2014, 01:02:12 UTC
e1549a0 Dr. Stephen Henson28 January 2014, 15:35:16 UTCtypo (cherry picked from commit cb2182676bdf652070bc272a3896d957763a4324)28 January 2014, 15:36:30 UTC
765be74 Dr. Stephen Henson28 January 2014, 15:15:26 UTCFix demo comment: 0.9.9 never released. (cherry picked from commit 717cc8589540b95122a652dee68e6a75b6262d93)28 January 2014, 15:17:47 UTC
9614d2c Dr. Stephen Henson28 January 2014, 15:10:27 UTCCheck i before r[i]. PR#324428 January 2014, 15:10:27 UTC
ad03c71 Dr. Stephen Henson28 January 2014, 13:51:58 UTCAdd loaded dynamic ENGINEs to list. Always add a dynamically loaded ENGINE to list. Otherwise it can cause problems when multiply loaded, especially if it adds new public key methods. For all current engines we only want a single implementation anyway. (cherry picked from commit e933f91f50108a43c0198cdc63ecdfdbc77b4d0d)28 January 2014, 13:57:34 UTC
4eedf86 Dr. Stephen Henson23 January 2014, 18:36:33 UTCUse default digest implementation in dgst.c Use default instead of ENGINE version of digest. Without this errors will occur if you use an ENGINE for a private key and it doesn't implement the digest in question.23 January 2014, 18:36:33 UTC
eb85ee9 Kaspar Brand16 January 2014, 13:49:38 UTCOmit initial status request callback check. PR#317816 January 2014, 13:49:38 UTC
fa2026d Zoltan Arpadffy11 January 2014, 22:42:37 UTCVMS fixes11 January 2014, 22:42:37 UTC
fe08007 Dr. Stephen Henson09 January 2014, 22:47:22 UTCFix bug in X509_V_FLAG_IGNORE_CRITICAL CRL handling. (cherry picked from commit 8f4077ca69076cebaca51b7b666db1ed49e46b9e)09 January 2014, 22:54:03 UTC
e3ebdcf Dr. Stephen Henson08 January 2014, 14:24:21 UTCUpdate NEWS.08 January 2014, 14:24:21 UTC
cb10cf1 Dr. Stephen Henson08 January 2014, 13:39:48 UTCUpdate NEWS.08 January 2014, 13:39:48 UTC
c0dd71c Dr. Stephen Henson08 January 2014, 13:07:20 UTCFix warning PR#322008 January 2014, 13:36:27 UTC
51478be Dr. Stephen Henson06 January 2014, 15:37:02 UTCUpdate NEWS: removal of time in handshakes.06 January 2014, 15:37:02 UTC
a7304e4 Dr. Stephen Henson06 January 2014, 14:37:03 UTCPrepare for 1.0.1g-dev06 January 2014, 14:37:03 UTC
0d87763 Dr. Stephen Henson06 January 2014, 14:36:07 UTCPrepare for 1.0.1f release06 January 2014, 14:36:07 UTC
197e0ea Dr. Stephen Henson06 January 2014, 14:35:04 UTCFix for TLS record tampering bug CVE-2013-435306 January 2014, 14:35:04 UTC
c776a3f Dr. Stephen Henson06 January 2014, 13:33:27 UTCmake update06 January 2014, 13:33:27 UTC
25c9fa6 Dr. Stephen Henson04 January 2014, 13:50:52 UTCRestore SSL_OP_MSIE_SSLV2_RSA_PADDING The flag SSL_OP_MSIE_SSLV2_RSA_PADDING hasn't done anything since OpenSSL 0.9.7h but deleting it will break source compatibility with any software that references it. Restore it but #define to zero. (cherry picked from commit b17d6b8d1d49fa4732deff17cfd1833616af0d9c)04 January 2014, 14:00:44 UTC
d2dc33d Dr. Stephen Henson02 January 2014, 19:02:28 UTCupdate NEWS02 January 2014, 19:02:28 UTC
f3dcc84 Dr. Stephen Henson24 December 2013, 18:17:00 UTCDon't change version number if session established When sending an invalid version number alert don't change the version number to the client version if a session is already established. Thanks to Marek Majkowski for additional analysis of this issue. PR#319102 January 2014, 15:12:48 UTC
1c2c5e4 Dr. Stephen Henson11 December 2013, 14:45:12 UTCDon't use rdrand engine as default unless explicitly requested. (cherry picked from commit 8f68678989a198ead3ab59a698302ecb0f1c8fb1)22 December 2013, 16:08:01 UTC
3462896 Dr. Stephen Henson20 December 2013, 15:26:50 UTCFix DTLS retransmission from previous session. For DTLS we might need to retransmit messages from the previous session so keep a copy of write context in DTLS retransmission buffers instead of replacing it after sending CCS. CVE-2013-6450.20 December 2013, 23:12:18 UTC
a6c62f0 Dr. Stephen Henson20 December 2013, 15:12:26 UTCIgnore NULL parameter in EVP_MD_CTX_destroy.20 December 2013, 22:52:41 UTC
ca98926 Dr. Stephen Henson19 December 2013, 14:37:39 UTCUse version in SSL_METHOD not SSL structure. When deciding whether to use TLS 1.2 PRF and record hash algorithms use the version number in the corresponding SSL_METHOD structure instead of the SSL structure. The SSL structure version is sometimes inaccurate. Note: OpenSSL 1.0.2 and later effectively do this already. (CVE-2013-6449)19 December 2013, 21:04:28 UTC
2ec4181 Andy Polyakov18 December 2013, 20:27:35 UTCsha512.c: fullfull implicit API contract in SHA512_Transform. SHA512_Transform was initially added rather as tribute to tradition than for practucal reasons. But use was recently found in ssl/s3_cbc.c and it turned to be problematic on platforms that don't tolerate misasligned references to memory and lack assembly subroutine. (cherry picked from commit cdd1acd788020d2c525331da1712ada778f1373c)18 December 2013, 22:03:03 UTC
0294b2b Dr. Stephen Henson14 December 2013, 13:55:48 UTCCheck EVP errors for handshake digests. Partial mitigation of PR#320018 December 2013, 13:26:10 UTC
f1068a1 Dr. Stephen Henson10 December 2013, 12:52:27 UTCGet FIPS checking logic right. We need to lock when *not* in FIPS mode. (cherry picked from commit 57c4e42d7545b51cbc00015defc81db7236dc15f)10 December 2013, 12:54:55 UTC
cadde46 Dr. Stephen Henson10 December 2013, 00:10:53 UTCremove obsolete STATUS file10 December 2013, 00:10:53 UTC
c2bdcba Dr. Stephen Henson09 December 2013, 23:55:12 UTCAdd release dates to NEWS09 December 2013, 23:55:12 UTC
60df657 Dr. Stephen Henson08 December 2013, 13:13:29 UTCmake update08 December 2013, 13:23:14 UTC
17a2d08 Dr. Stephen Henson04 December 2013, 13:39:04 UTCAvoid multiple locks in FIPS mode. PR: 3176. In FIPS mode ssleay_rand_bytes is only used for PRNG seeding and is performed in either a single threaded context (when the PRNG is first initialised) or under a lock (reseeding). To avoid multiple locks disable use of CRYPTO_LOCK_RAND in FIPS mode in ssleay_rand_bytes. (cherry picked from commit 53142f72c9b9c9bad2f39ca6200a4f04f5c8001c)08 December 2013, 13:23:14 UTC
accb300 Andy Polyakov03 December 2013, 22:59:55 UTCbn/asm/x86_64-mont5.pl: comply with Win64 ABI. PR: 3189 Submitted by: Oscar Ciurana (cherry picked from commit c5d5f5bd0fe8b2313bec844c0f80f3d49562bfa8)03 December 2013, 23:03:46 UTC
b13dff6 Dr. Stephen Henson27 November 2013, 15:35:56 UTCSimplify and update openssl.spec27 November 2013, 15:38:04 UTC
4ade6a8 Andy Polyakov12 November 2013, 21:09:55 UTCsrp/srp_grps.h: make it Compaq C-friendly. PR: 3165 Submitted by: Daniel Richard G. (cherry picked from commit 2df9ec01d563f9cc2deab07e8c3391059d476592) (cherry picked from commit 0de70011adf6952e3b975d1a8a383879b64f3b77)12 November 2013, 21:20:45 UTC
00fadef Andy Polyakov12 November 2013, 20:59:01 UTCmodes/asm/ghash-alpha.pl: update from HEAD. PR: 3165 (cherry picked from commit 220d1e5353409d9af938111b22d6b58e6a42f633)12 November 2013, 21:01:31 UTC
7ed244a Andy Polyakov12 November 2013, 20:49:15 UTCMake Makefiles OSF-make-friendly. PR: 3165 (cherry picked from commit d1cf23ac86c05b22b8780e2c03b67230564d2d34)12 November 2013, 21:01:20 UTC
e94a238 Dr. Stephen Henson11 November 2013, 22:39:40 UTCFix memory leak. (cherry picked from commit 16bc45ba956fdf07c7cda7feda88de597569df63)11 November 2013, 23:55:40 UTC
041f681 Dr. Stephen Henson11 November 2013, 22:24:08 UTCTypo. (cherry picked from commit 5c50462e1e23eeb6d91e1e5311f5da0b79b04fb4)11 November 2013, 22:24:40 UTC
afec9f5 Andy Polyakov10 November 2013, 22:06:41 UTCMakefile.org: make FIPS build work with BSD make. (cherry picked from commit 60adefa61025ffd7d56cf7ff8491008f783282bf)10 November 2013, 22:08:25 UTC
0ec1a77 Dr. Stephen Henson07 November 2013, 15:15:20 UTCCheck for missing components in RSA_check. (cherry picked from commit 01be36ef70525e81fc358d2e559bdd0a0d9427a5)09 November 2013, 15:09:21 UTC
62c2b6d Dr. Stephen Henson07 November 2013, 17:27:07 UTCDocument RSAPublicKey_{in,out} options. (cherry picked from commit 7040d73d22987532faa503630d6616cf2788c975)09 November 2013, 15:09:21 UTC
5b98979 Andy Polyakov08 November 2013, 22:00:35 UTCengines/ccgost/gost89.h: make word32 defintion unconditional. Original definition depended on __LONG_MAX__ that is not guaranteed to be present. As we don't support platforms with int narrower that 32 bits it's appropriate to make defition inconditional. PR: 3165 (cherry picked from commit 96180cac04591abfe50fc86096365553484bde65)08 November 2013, 22:09:26 UTC
9abbf5c Andy Polyakov08 November 2013, 21:56:44 UTCmodes/asm/ghash-alpha.pl: make it work with older assembler. PR: 3165 (cherry picked from commit d24d1d7daf515aa19fbf18f6371e3e617028a07c)08 November 2013, 22:09:13 UTC
ddfe486 Dr. Stephen Henson06 November 2013, 14:38:28 UTCEnable PSK in FIPS mode. Enable PSK ciphersuites with AES or DES3 in FIPS mode. (cherry picked from commit e0ffd129c16af90eb5e2ce54e57832c0046d1aaf)06 November 2013, 14:40:01 UTC
834d30b Dr. Stephen Henson06 November 2013, 13:16:50 UTCInitialise context before using it. (cherry picked from commit a4947e4e064d2d5bb622ac64cf13edc4a46ed196)06 November 2013, 13:19:23 UTC
e26faa9 Ben Laurie03 November 2013, 17:23:50 UTCPBKDF2 should be efficient. Contributed by Christian Heimes <christian@python.org>.03 November 2013, 17:33:54 UTC
025f7db Robin Seggelmann09 May 2012, 17:28:41 UTCDTLS/SCTP Finished Auth Bug PR: 2808 With DTLS/SCTP the SCTP extension SCTP-AUTH is used to protect DATA and FORWARD-TSN chunks. The key for this extension is derived from the master secret and changed with the next ChangeCipherSpec, whenever a new key has been negotiated. The following Finished then already uses the new key. Unfortunately, the ChangeCipherSpec and Finished are part of the same flight as the ClientKeyExchange, which is necessary for the computation of the new secret. Hence, these messages are sent immediately following each other, leaving the server very little time to compute the new secret and pass it to SCTP before the finished arrives. So the Finished is likely to be discarded by SCTP and a retransmission becomes necessary. To prevent this issue, the Finished of the client is still sent with the old key. (cherry picked from commit 9fb523adce6fd6015b68da2ca8e4ac4900ac2be2) (cherry picked from commit b9ef52b07897f249a9fa44943dba33fba8fb2721)01 November 2013, 22:44:20 UTC
44f4934 Robin Seggelmann09 May 2012, 17:28:44 UTCDTLS/SCTP struct authchunks Bug PR: 2809 DTLS/SCTP requires DATA and FORWARD-TSN chunks to be protected with SCTP-AUTH. It is checked if this has been activated successfully for the local and remote peer. Due to a bug, however, the gauth_number_of_chunks field of the authchunks struct is missing on FreeBSD, and was therefore not considered in the OpenSSL implementation. This patch sets the corresponding pointer for the check correctly whether or not this bug is present. (cherry picked from commit f596e3c491035fe80db5fc0c3ff6b647662b0003) (cherry picked from commit b8140811367f6e1ef13afa6ffe9625309c46946c)01 November 2013, 22:44:06 UTC
453ca70 Nick Mathewson20 October 2013, 22:08:58 UTCFix another gmt_unix_time case in server_random20 October 2013, 22:14:40 UTC
5e1ff66 Dr. Stephen Henson15 October 2013, 13:15:54 UTCDon't use RSA+MD5 with TLS 1.2 Since the TLS 1.2 supported signature algorithms extension is less sophisticaed in OpenSSL 1.0.1 this has to be done in two stages. RSA+MD5 is removed from supported signature algorithms extension: any compliant implementation should never use RSA+MD5 as a result. To cover the case of a broken implementation using RSA+MD5 anyway disable lookup of MD5 algorithm in TLS 1.2.20 October 2013, 11:23:27 UTC
833a896 Ben Laurie19 October 2013, 11:37:15 UTCMore cleanup.19 October 2013, 11:37:15 UTC
34e43b9 Ben Laurie19 October 2013, 11:34:15 UTCCleanup.19 October 2013, 11:34:15 UTC
62036c6 Ben Laurie19 October 2013, 10:46:32 UTCMerge branch 'no_gmt_unix_time' of git://github.com/nmathewson/openssl into OpenSSL_1_0_1-stable19 October 2013, 10:46:32 UTC
68dd851 Andy Polyakov13 October 2013, 11:14:52 UTCMIPS assembly pack: get rid of deprecated instructions. Latest MIPS ISA specification declared 'branch likely' instructions obsolete. To makes code future-proof replace them with equivalent. (cherry picked from commit 0c2adb0a9be76da8de9bbfd5377215f71711a52e)13 October 2013, 11:19:12 UTC
bbf9f3c Andy Polyakov12 October 2013, 19:47:54 UTCaes/asm/bsaes-x86_64.pl: update from master. Performance improvement and Windows-specific bugfix (PR#3139). (cherry picked from commit 9ed6fba2b4685ced2340feff03da5a12ed14b003)12 October 2013, 19:50:15 UTC
2583270 Nick Mathewson09 October 2013, 14:37:53 UTCControl sending time with SSL_SEND_{CLIENT,SERVER}RANDOM_MODE (I'd rather use an option, but it appears that the options field is full.) Now, we send the time in the gmt_unix_time field if the appropriate one of these mode options is set, but randomize the field if the flag is not set.09 October 2013, 14:37:53 UTC
3da721d Nick Mathewson09 October 2013, 14:28:42 UTCRefactor {client,server}_random to call an intermediate function I'll be using this to make an option for randomizing the time.09 October 2013, 14:28:42 UTC
eb22b7e Andy Polyakov03 October 2013, 08:55:49 UTCevp/e_des3.c: fix typo with potential integer overflow on 32-bit platforms. Submitted by: Yuriy Kaminskiy (cherry picked from commit 524b00c0da42b129ed8622dfb3f5eab9cc5d6617) Resolved conflicts: crypto/evp/e_des3.c03 October 2013, 09:11:44 UTC
b939161 Ben Laurie01 October 2013, 13:51:04 UTCConstification.01 October 2013, 13:53:18 UTC
82f42a1 Dr. Stephen Henson17 July 2013, 13:19:40 UTCTypo. (cherry picked from commit 415ece73015a0e24ea934ecfb857d022952bb65b)30 September 2013, 13:20:42 UTC
a4870de Dr. Stephen Henson16 September 2013, 04:23:44 UTCDisable Dual EC DRBG. Return an error if an attempt is made to enable the Dual EC DRBG: it is not used by default.22 September 2013, 17:24:12 UTC
39aabe5 Dr. Stephen Henson16 September 2013, 05:12:00 UTCFix warning.22 September 2013, 17:24:12 UTC
f4c93b4 Nick Mathewson16 September 2013, 17:32:54 UTCDo not include a timestamp in the ServerHello Random field. Instead, send random bytes.16 September 2013, 17:44:10 UTC
4af7930 Nick Mathewson08 September 2013, 00:40:59 UTCDo not include a timestamp in the ClientHello Random field. Instead, send random bytes. While the gmt_unix_time record was added in an ostensible attempt to mitigate the dangers of a bad RNG, its presence leaks the host's view of the current time in the clear. This minor leak can help fingerprint TLS instances across networks and protocols... and what's worse, it's doubtful thet the gmt_unix_time record does any good at all for its intended purpose, since: * It's quite possible to open two TLS connections in one second. * If the PRNG output is prone to repeat itself, ephemeral * handshakes (and who knows what else besides) are broken.16 September 2013, 17:44:10 UTC
13bca90 Rob Stradling12 September 2013, 21:05:17 UTCUpdate CHANGES.16 September 2013, 14:17:37 UTC
c9a6dda Rob Stradling10 September 2013, 10:06:55 UTCTidy up comments.16 September 2013, 14:07:52 UTC
f4a5197 Rob Stradling10 September 2013, 10:03:29 UTCUse TLS version supplied by client when fingerprinting Safari.16 September 2013, 14:07:52 UTC
937f125 Rob Stradling10 September 2013, 10:00:57 UTCFix compilation with no-ec and/or no-tlsext.16 September 2013, 14:07:52 UTC
4b61f6d Rob Stradling09 September 2013, 11:52:41 UTCDon't prefer ECDHE-ECDSA ciphers when the client appears to be Safari on OS X. OS X 10.8..10.8.3 has broken support for ECDHE-ECDSA ciphers.16 September 2013, 14:07:51 UTC
d5bff72 Ben Laurie16 September 2013, 14:05:21 UTCRemove AVX and VIS3 support.16 September 2013, 14:05:21 UTC
3b4be00 Andy Polyakov19 May 2013, 19:55:30 UTCgcm128.c: update from master (add AVX and VIS3 support).16 September 2013, 13:14:56 UTC
125c2ed Andy Polyakov05 November 2012, 17:03:39 UTCcrypto/modes: even more strict aliasing fixes [and fix bug in cbc128.c from previous cbc128.c commit].16 September 2013, 13:12:25 UTC
09da955 Andy Polyakov05 November 2012, 10:04:02 UTCcbc128.c: fix strict aliasing warning.16 September 2013, 13:11:53 UTC
cc53b38 Bodo Moeller16 September 2013, 12:47:56 UTCSync CHANGES and NEWS files.16 September 2013, 12:47:56 UTC
0aeeae0 Bodo Moeller16 September 2013, 11:03:27 UTCFix overly lenient comparisons: - EC_GROUP_cmp shouldn't consider curves equal just because the curve name is the same. (They really *should* be the same in this case, but there's an EC_GROUP_set_curve_name API, which could be misused.) - EC_POINT_cmp shouldn't return 0 for ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED or EC_R_INCOMPATIBLE_OBJECTS errors because in a cmp API, 0 indicates equality (not an error). Reported by: king cope (cherry picked from commit 312a46791ab465cfa3bf26764361faed0e5df014)16 September 2013, 11:09:27 UTC
  • Newer
  • Older

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top