Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
9ce9c4d2e8 | ||
![]() |
5dacd8e02c | ||
![]() |
c0cb9e9ae1 | ||
![]() |
17bf566573 | ||
![]() |
fa41ca5182 | ||
![]() |
bb9c1f2838 | ||
![]() |
2169962cb4 | ||
![]() |
9092f35957 |
20
ChangeLog
20
ChangeLog
@@ -28,7 +28,25 @@ history is also available from Git.
|
|||||||
|
|
||||||
LibreSSL Portable Release Notes:
|
LibreSSL Portable Release Notes:
|
||||||
|
|
||||||
2.2.6
|
2.2.9 - Security fix
|
||||||
|
|
||||||
|
* Correct a problem that prevents the DSA signing algorithm from
|
||||||
|
running in constant time even if the flag BN_FLG_CONSTTIME is set.
|
||||||
|
This issue was reported by Cesar Pereida (Aalto University), Billy
|
||||||
|
Brumley (Tampere University of Technology), and Yuval Yarom (The
|
||||||
|
University of Adelaide and NICTA). The fix was developed by Cesar
|
||||||
|
Pereida. See OpenBSD 5.8 errata 17, June 6, 2016
|
||||||
|
|
||||||
|
2.2.8 - Reliability fix
|
||||||
|
|
||||||
|
* Fixed an error in libcrypto when parsing some ASN.1 elements > 16k.
|
||||||
|
|
||||||
|
2.2.7 - Security Update
|
||||||
|
|
||||||
|
* Fix multiple vulnerabilities in libcrypto relating to ASN.1 and encoding.
|
||||||
|
From OpenSSL.
|
||||||
|
|
||||||
|
2.2.6 - Security Update
|
||||||
|
|
||||||
* Deprecated the SSL_OP_SINGLE_DH_USE flag.
|
* Deprecated the SSL_OP_SINGLE_DH_USE flag.
|
||||||
|
|
||||||
|
@@ -3,6 +3,7 @@ include $(top_srcdir)/Makefile.am.common
|
|||||||
AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1
|
||||||
AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp
|
||||||
AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes
|
||||||
|
AM_CPPFLAGS += -I$(top_srcdir)/crypto
|
||||||
|
|
||||||
lib_LTLIBRARIES = libcrypto.la
|
lib_LTLIBRARIES = libcrypto.la
|
||||||
|
|
||||||
@@ -119,6 +120,7 @@ libcrypto_la_SOURCES += mem_dbg.c
|
|||||||
libcrypto_la_SOURCES += o_init.c
|
libcrypto_la_SOURCES += o_init.c
|
||||||
libcrypto_la_SOURCES += o_str.c
|
libcrypto_la_SOURCES += o_str.c
|
||||||
libcrypto_la_SOURCES += o_time.c
|
libcrypto_la_SOURCES += o_time.c
|
||||||
|
noinst_HEADERS += constant_time_locl.h
|
||||||
noinst_HEADERS += cryptlib.h
|
noinst_HEADERS += cryptlib.h
|
||||||
noinst_HEADERS += md32_common.h
|
noinst_HEADERS += md32_common.h
|
||||||
noinst_HEADERS += o_time.h
|
noinst_HEADERS += o_time.h
|
||||||
|
@@ -22,7 +22,7 @@ for ARCH in X86 X64; do
|
|||||||
|
|
||||||
echo Building for $HOST
|
echo Building for $HOST
|
||||||
|
|
||||||
CC=$HOST-gcc ./configure --host=$HOST
|
CC=$HOST-gcc ./configure --host=$HOST --with-openssldir=c:/libressl/ssl
|
||||||
make clean
|
make clean
|
||||||
PATH=$PATH:/usr/$HOST/sys-root/mingw/bin \
|
PATH=$PATH:/usr/$HOST/sys-root/mingw/bin \
|
||||||
make -j 4 check
|
make -j 4 check
|
||||||
|
Reference in New Issue
Block a user