forked from wolfSSL/wolfssl
prepare for release v3.15.3
This commit is contained in:
23
ChangeLog.md
23
ChangeLog.md
@ -1,6 +1,25 @@
|
||||
# wolfSSL Release x.x.x
|
||||
# wolfSSL Release 3.15.3 (6/20/2018)
|
||||
|
||||
* Added AES performance enhancements on AMD processors with build option `./configure --enable-intelasm`
|
||||
Release 3.15.3 of wolfSSL embedded TLS has bug fixes and new features including:
|
||||
|
||||
* ECDSA blinding added for hardening against side channel attacks
|
||||
* Fix for compatibility layer build with no server and no client defined
|
||||
* Use of optimized Intel assembly instructions on compatible AMD processor
|
||||
* wolfCrypt Nucleus port additions
|
||||
* Fix added for MatchDomainName and additional tests added
|
||||
* Fixes for building with ‘WOLFSSL_ATECC508A’ defined
|
||||
* Fix for verifying a PKCS7 file in BER format with indefinite size
|
||||
|
||||
|
||||
This release of wolfSSL fixes 2 security vulnerability fixes.
|
||||
|
||||
Medium level fix for PRIME + PROBE attack combined with a variant of Lucky 13. Constant time hardening was done to avoid potential cache-based side channel attacks when verifying the MAC on a TLS packet. CBC cipher suites are susceptible on systems where an attacker could gain access and run a parallel program for inspecting caching. Only wolfSSL users that are using TLS/DTLS CBC cipher suites need to update. Users that have only AEAD and stream cipher suites set, or have built with WOLFSSL_MAX_STRENGTH (--enable-maxstrength), are not vulnerable. Thanks to Eyal Ronen, Kenny Paterson, and Adi Shamir for the report.
|
||||
|
||||
Medium level fix for a ECDSA side channel attack. wolfSSL is one of over a dozen vendors mentioned in the recent Technical Advisory “ROHNP” by author Ryan Keegan. Only wolfSSL users with long term ECDSA private keys using our fastmath or normal math libraries on systems where attackers can get access to the machine using the ECDSA key need to update. An attacker gaining access to the system could mount a memory cache side channel attack that could recover the key within a few thousand signatures. wolfSSL users that are not using ECDSA private keys, that are using the single precision math library, or that are using ECDSA offloading do not need to update. (blog with more information https://www.wolfssl.com/wolfssh-and-rohnp/)
|
||||
|
||||
|
||||
See INSTALL file for build instructions.
|
||||
More info can be found on-line at http://wolfssl.com/wolfSSL/Docs.html
|
||||
|
||||
# wolfSSL Release 3.15.0 (06/05/2018)
|
||||
|
||||
|
@ -84,6 +84,7 @@ EXTRA_DIST+= wolfssl64.sln
|
||||
EXTRA_DIST+= valgrind-error.sh
|
||||
EXTRA_DIST+= gencertbuf.pl
|
||||
EXTRA_DIST+= README.md
|
||||
EXTRA_DIST+= README
|
||||
EXTRA_DIST+= ChangeLog.md
|
||||
EXTRA_DIST+= LICENSING
|
||||
EXTRA_DIST+= INSTALL
|
||||
|
133
README
Normal file
133
README
Normal file
@ -0,0 +1,133 @@
|
||||
*** Description ***
|
||||
|
||||
The wolfSSL embedded SSL library (formerly CyaSSL) is a lightweight SSL/TLS
|
||||
library written in ANSI C and targeted for embedded, RTOS, and
|
||||
resource-constrained environments - primarily because of its small size, speed,
|
||||
and feature set. It is commonly used in standard operating environments as well
|
||||
because of its royalty-free pricing and excellent cross platform support.
|
||||
wolfSSL supports industry standards up to the current TLS 1.3 and DTLS 1.3
|
||||
levels, is up to 20 times smaller than OpenSSL, and offers progressive ciphers
|
||||
such as ChaCha20, Curve25519, NTRU, and Blake2b. User benchmarking and feedback
|
||||
reports dramatically better performance when using wolfSSL over OpenSSL.
|
||||
|
||||
wolfSSL is powered by the wolfCrypt library. A version of the wolfCrypt
|
||||
cryptography library has been FIPS 140-2 validated (Certificate #2425). For
|
||||
additional information, visit the wolfCrypt FIPS FAQ
|
||||
(https://www.wolfssl.com/license/fips/) or contact fips@wolfssl.com
|
||||
|
||||
*** Why choose wolfSSL? ***
|
||||
|
||||
There are many reasons to choose wolfSSL as your embedded SSL solution. Some of
|
||||
the top reasons include size (typical footprint sizes range from 20-100 kB),
|
||||
support for the newest standards (SSL 3.0, TLS 1.0, TLS 1.1, TLS 1.2, TLS 1.3,
|
||||
DTLS 1.0, and DTLS 1.2), current and progressive cipher support (including
|
||||
stream ciphers), multi-platform, royalty free, and an OpenSSL compatibility API
|
||||
to ease porting into existing applications which have previously used the
|
||||
OpenSSL package. For a complete feature list, see chapter 4 of the wolfSSL
|
||||
manual. (https://www.wolfssl.com/docs/wolfssl-manual/ch4/)
|
||||
|
||||
*** Notes, Please read ***
|
||||
|
||||
Note 1)
|
||||
wolfSSL as of 3.6.6 no longer enables SSLv3 by default. wolfSSL also no longer
|
||||
supports static key cipher suites with PSK, RSA, or ECDH. This means if you
|
||||
plan to use TLS cipher suites you must enable DH (DH is on by default), or
|
||||
enable ECC (ECC is on by default), or you must enable static key cipher suites
|
||||
with
|
||||
|
||||
WOLFSSL_STATIC_DH
|
||||
WOLFSSL_STATIC_RSA
|
||||
or
|
||||
WOLFSSL_STATIC_PSK
|
||||
|
||||
though static key cipher suites are deprecated and will be removed from future
|
||||
versions of TLS. They also lower your security by removing PFS. Since current
|
||||
NTRU suites available do not use ephemeral keys, WOLFSSL_STATIC_RSA needs to be
|
||||
used in order to build with NTRU suites.
|
||||
|
||||
When compiling ssl.c, wolfSSL will now issue a compiler error if no cipher
|
||||
suites are available. You can remove this error by defining
|
||||
WOLFSSL_ALLOW_NO_SUITES in the event that you desire that, i.e., you're not
|
||||
using TLS cipher suites.
|
||||
|
||||
Note 2)
|
||||
wolfSSL takes a different approach to certificate verification than OpenSSL
|
||||
does. The default policy for the client is to verify the server, this means
|
||||
that if you don't load CAs to verify the server you'll get a connect error,
|
||||
no signer error to confirm failure (-188).
|
||||
|
||||
If you want to mimic OpenSSL behavior of having SSL_connect succeed even if
|
||||
verifying the server fails and reducing security you can do this by calling:
|
||||
|
||||
wolfSSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, 0);
|
||||
|
||||
before calling wolfSSL_new();. Though it's not recommended.
|
||||
|
||||
Note 3)
|
||||
The enum values SHA, SHA256, SHA384, SHA512 are no longer available when
|
||||
wolfSSL is built with --enable-opensslextra (OPENSSL_EXTRA) or with the macro
|
||||
NO_OLD_SHA_NAMES. These names get mapped to the OpenSSL API for a single call
|
||||
hash function. Instead the name WC_SHA, WC_SHA256, WC_SHA384 and WC_SHA512
|
||||
should be used for the enum name.
|
||||
|
||||
*** end Notes ***
|
||||
|
||||
|
||||
********* wolfSSL Release 3.15.3 (6/20/2018)
|
||||
|
||||
Release 3.15.3 of wolfSSL embedded TLS has bug fixes and new features including:
|
||||
|
||||
- ECDSA blinding added for hardening against side channel attacks
|
||||
- Fix for compatibility layer build with no server and no client defined
|
||||
- Use of optimized Intel assembly instructions on compatible AMD processor
|
||||
- wolfCrypt Nucleus port additions
|
||||
- Fix added for MatchDomainName and additional tests added
|
||||
- Fixes for building with ‘WOLFSSL_ATECC508A’ defined
|
||||
- Fix for verifying a PKCS7 file in BER format with indefinite size
|
||||
|
||||
|
||||
This release of wolfSSL fixes 2 security vulnerability fixes.
|
||||
|
||||
Medium level fix for PRIME + PROBE attack combined with a variant of Lucky 13.
|
||||
Constant time hardening was done to avoid potential cache-based side channel
|
||||
attacks when verifying the MAC on a TLS packet. CBC cipher suites are
|
||||
susceptible on systems where an attacker could gain access and run a parallel
|
||||
program for inspecting caching. Only wolfSSL users that are using TLS/DTLS CBC
|
||||
cipher suites need to update. Users that have only AEAD and stream cipher suites
|
||||
set, or have built with WOLFSSL_MAX_STRENGTH (--enable-maxstrength), are not
|
||||
vulnerable. Thanks to Eyal Ronen, Kenny Paterson, and Adi Shamir for the report.
|
||||
|
||||
Medium level fix for a ECDSA side channel attack. wolfSSL is one of over a dozen
|
||||
vendors mentioned in the recent Technical Advisory “ROHNP” by author Ryan
|
||||
Keegan. Only wolfSSL users with long term ECDSA private keys using our fastmath
|
||||
or normal math libraries on systems where attackers can get access to the
|
||||
machine using the ECDSA key need to update. An attacker gaining access to the
|
||||
system could mount a memory cache side channel attack that could recover the key
|
||||
within a few thousand signatures. wolfSSL users that are not using ECDSA private
|
||||
keys, that are using the single precision math library, or that are using ECDSA
|
||||
offloading do not need to update. (blog with more information
|
||||
https://www.wolfssl.com/wolfssh-and-rohnp/)
|
||||
|
||||
|
||||
|
||||
See INSTALL file for build instructions.
|
||||
More info can be found on-line at http://wolfssl.com/wolfSSL/Docs.html
|
||||
|
||||
*** Resources ***
|
||||
|
||||
|
||||
[wolfSSL Website](https://www.wolfssl.com/)
|
||||
|
||||
[wolfSSL Wiki](https://github.com/wolfSSL/wolfssl/wiki)
|
||||
|
||||
[FIPS FAQ](https://www.wolfssl.com/wolfSSL/fips.html)
|
||||
|
||||
[wolfSSL Manual](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-toc.html)
|
||||
|
||||
[wolfSSL API Reference]
|
||||
(https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-17-wolfssl-api-reference.html)
|
||||
|
||||
[wolfCrypt API Reference]
|
||||
(https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-18-wolfcrypt-api-reference.html)
|
||||
|
||||
[TLS 1.3](https://www.wolfssl.com/docs/tls13/)
|
138
README.md
138
README.md
@ -1,20 +1,3 @@
|
||||
# Resources
|
||||
|
||||
[wolfSSL Website](https://www.wolfssl.com/)
|
||||
|
||||
[wolfSSL Wiki](https://github.com/wolfSSL/wolfssl/wiki)
|
||||
|
||||
[FIPS FAQ](https://www.wolfssl.com/wolfSSL/fips.html)
|
||||
|
||||
[wolfSSL Manual](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-toc.html)
|
||||
|
||||
[wolfSSL API Reference](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-17-wolfssl-api-reference.html)
|
||||
|
||||
[wolfCrypt API Reference](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-18-wolfcrypt-api-reference.html)
|
||||
|
||||
[TLS 1.3](https://www.wolfssl.com/docs/tls13/)
|
||||
|
||||
|
||||
# Description
|
||||
|
||||
The wolfSSL embedded SSL library (formerly CyaSSL) is a lightweight SSL/TLS library written in ANSI C and targeted for embedded, RTOS, and resource-constrained environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating environments as well because of its royalty-free pricing and excellent cross platform support. wolfSSL supports industry standards up to the current TLS 1.3 and DTLS 1.3 levels, is up to 20 times smaller than OpenSSL, and offers progressive ciphers such as ChaCha20, Curve25519, NTRU, and Blake2b. User benchmarking and feedback reports dramatically better performance when using wolfSSL over OpenSSL.
|
||||
@ -65,9 +48,6 @@ wolfSSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, 0);
|
||||
|
||||
before calling wolfSSL_new(); Though it's not recommended.
|
||||
```
|
||||
# wolfSSL Release x.x.x
|
||||
|
||||
* Added AES performance enhancements on AMD processors using Intel ASM instructions
|
||||
|
||||
## Note 3
|
||||
```
|
||||
@ -78,97 +58,41 @@ hash function. Instead the name WC_SHA, WC_SHA256, WC_SHA384 and WC_SHA512
|
||||
should be used for the enum name.
|
||||
```
|
||||
|
||||
# wolfSSL Release x.x.x
|
||||
# wolfSSL Release 3.15.3 (6/20/2018)
|
||||
|
||||
* Added AES performance enhancements on AMD processors with build option `./configure --enable-intelasm`
|
||||
Release 3.15.3 of wolfSSL embedded TLS has bug fixes and new features including:
|
||||
|
||||
# wolfSSL Release 3.15.0 (06/05/2018)
|
||||
* ECDSA blinding added for hardening against side channel attacks
|
||||
* Fix for compatibility layer build with no server and no client defined
|
||||
* Use of optimized Intel assembly instructions on compatible AMD processor
|
||||
* wolfCrypt Nucleus port additions
|
||||
* Fix added for MatchDomainName and additional tests added
|
||||
* Fixes for building with ‘WOLFSSL_ATECC508A’ defined
|
||||
* Fix for verifying a PKCS7 file in BER format with indefinite size
|
||||
|
||||
Release 3.15.0 of wolfSSL embedded TLS has bug fixes and new features including:
|
||||
|
||||
* Support for TLS 1.3 Draft versions 23, 26 and 28.
|
||||
* Add FIPS SGX support!
|
||||
* Single Precision assembly code added for ARM and 64-bit ARM to enhance performance.
|
||||
* Improved performance for Single Precision maths on 32-bit.
|
||||
* Improved downgrade support for the TLS 1.3 handshake.
|
||||
* Improved TLS 1.3 support from interoperability testing.
|
||||
* Added option to allow TLS 1.2 to be compiled out to reduce size and enhance security.
|
||||
* Added option to support Ed25519 in TLS 1.2 and 1.3.
|
||||
* Update wolfSSL_HMAC_Final() so the length parameter is optional.
|
||||
* Various fixes for Coverity static analysis reports.
|
||||
* Add define to use internal struct timeval (USE_WOLF_TIMEVAL_T).
|
||||
* Switch LowResTimer() to call XTIME instead of time(0) for better portability.
|
||||
* Expanded OpenSSL compatibility layer with a bevy of new functions.
|
||||
* Added Renesas CS+ project files.
|
||||
* Align DH support with NIST SP 800-56A, add wc_DhSetKey_ex() for q parameter.
|
||||
* Add build option for CAVP self test build (--enable-selftest).
|
||||
* Expose mp_toradix() when WOLFSSL_PUBLIC_MP is defined.
|
||||
* Example certificate expiration dates and generation script updated.
|
||||
* Additional optimizations to trim out unused strings depending on build options.
|
||||
* Fix for DN tag strings to have “=” when returning the string value to users.
|
||||
* Fix for wolfSSL_ERR_get_error_line_data return value if no more errors are in the queue.
|
||||
* Fix for AES-CBC IV value with PIC32 hardware acceleration.
|
||||
* Fix for wolfSSL_X509_print with ECC certificates.
|
||||
* Fix for strict checking on URI absolute vs relative path.
|
||||
* Added crypto device framework to handle PK RSA/ECC operations using callbacks, which adds new build option `./configure --enable-cryptodev` or `WOLF_CRYPTO_DEV`.
|
||||
* Added devId support to ECC and PKCS7 for hardware based private key.
|
||||
* Fixes in PKCS7 for handling possible memory leak in some error cases.
|
||||
* Added test for invalid cert common name when set with `wolfSSL_check_domain_name`.
|
||||
* Refactor of the cipher suite names to use single array, which contains internal name, IANA name and cipher suite bytes.
|
||||
* Added new function `wolfSSL_get_cipher_name_from_suite` for getting IANA cipher suite name using bytes.
|
||||
* Fixes for fsanitize reports.
|
||||
* Fix for openssl compatibility function `wolfSSL_RSA_verify` to check returned size.
|
||||
* Fixes and improvements for FreeRTOS AWS.
|
||||
* Fixes for building openssl compatibility with FreeRTOS.
|
||||
* Fix and new test for handling match on domain name that may have a null terminator inside.
|
||||
* Cleanup of the socket close code used for examples, CRL/OCSP and BIO to use single macro `CloseSocket`.
|
||||
* Refactor of the TLSX code to support returning error codes.
|
||||
* Added new signature wrapper functions `wc_SignatureVerifyHash` and `wc_SignatureGenerateHash` to allow direct use of hash.
|
||||
* Improvement to GCC-ARM IDE example.
|
||||
* Enhancements and cleanups for the ASN date/time code including new API's `wc_GetDateInfo`, `wc_GetCertDates` and `wc_GetDateAsCalendarTime`.
|
||||
* Fixes to resolve issues with C99 compliance. Added build option `WOLF_C99` to force C99.
|
||||
* Added a new `--enable-opensslall` option to enable all openssl compatibility features.
|
||||
* Added new `--enable-webclient` option for enabling a few HTTP API's.
|
||||
* Added new `wc_OidGetHash` API for getting the hash type from a hash OID.
|
||||
* Moved `wolfSSL_CertPemToDer`, `wolfSSL_KeyPemToDer`, `wolfSSL_PubKeyPemToDer` to asn.c and renamed to `wc_`. Added backwards compatibility macro for old function names.
|
||||
* Added new `WC_MAX_SYM_KEY_SIZE` macro for helping determine max key size.
|
||||
* Added `--enable-enckeys` or (`WOLFSSL_ENCRYPTED_KEYS`) to enable support for encrypted PEM private keys using password callback without having to use opensslextra.
|
||||
* Added ForceZero on the password buffer after done using it.
|
||||
* Refactor unique hash types to use same internal values (ex WC_MD5 == WC_HASH_TYPE_MD5).
|
||||
* Refactor the Sha3 types to use `wc_` naming, while retaining old names for compatibility.
|
||||
* Improvements to `wc_PBKDF1` to support more hash types and the non-standard extra data option.
|
||||
* Fix TLS 1.3 with ECC disabled and CURVE25519 enabled.
|
||||
* Added new define `NO_DEV_URANDOM` to disable the use of `/dev/urandom`.
|
||||
* Added `WC_RNG_BLOCKING` to indicate block w/sleep(0) is okay.
|
||||
* Fix for `HAVE_EXT_CACHE` callbacks not being available without `OPENSSL_EXTRA` defined.
|
||||
* Fix for ECC max bits `MAX_ECC_BITS` not always calculating correctly due to macro order.
|
||||
* Added support for building and using PKCS7 without RSA (assuming ECC is enabled).
|
||||
* Fixes and additions for Cavium Nitrox V to support ECC, AES-GCM and HMAC (SHA-224 and SHA3).
|
||||
* Enabled ECC, AES-GCM and SHA-512/384 by default in (Linux and Windows)
|
||||
* Added `./configure --enable-base16` and `WOLFSSL_BASE16` configuration option to enable Base16 API's.
|
||||
* Improvements to ATECC508A support for building without `WOLFSSL_ATMEL` defined.
|
||||
* Refactor IO callback function names to use `_CTX_` to eliminate confusion about the first parameter.
|
||||
* Added support for not loading a private key for server or client when `HAVE_PK_CALLBACK` is defined and the private PK callback is set.
|
||||
* Added new ECC API `wc_ecc_sig_size_calc` to return max signature size for a key size.
|
||||
* Cleanup ECC point import/export code and added new API `wc_ecc_import_unsigned`.
|
||||
* Fixes for handling OCSP with non-blocking.
|
||||
* Added new PK (Primary Key) callbacks for the VerifyRsaSign. The new callbacks API's are `wolfSSL_CTX_SetRsaVerifySignCb` and `wolfSSL_CTX_SetRsaPssVerifySignCb`.
|
||||
* Added new ECC API `wc_ecc_rs_raw_to_sig` to take raw unsigned R and S and encodes them into ECDSA signature format.
|
||||
* Added support for `WOLFSSL_STM32F1`.
|
||||
* Cleanup of the ASN X509 header/footer and XSTRNCPY logic.
|
||||
* Add copyright notice to autoconf files. (Thanks Brian Aker!)
|
||||
* Updated the M4 files for autotools. (Thanks Brian Aker!)
|
||||
* Add support for the cipher suite TLS_DH_anon_WITH_AES256_GCM_SHA384 with test cases. (Thanks Thivya Ashok!)
|
||||
* Add the TLS alert message unknown_psk_identity (115) from RFC 4279, section 2. (Thanks Thivya Ashok!)
|
||||
* Fix the case when using TCP with timeouts with TLS. wolfSSL shall be agnostic to network socket behavior for TLS. (DTLS is another matter.) The functions `wolfSSL_set_using_nonblock()` and `wolfSSL_get_using_nonblock()` are deprecated.
|
||||
* Hush the AR warning when building the static library with autotools.
|
||||
* Hush the “-pthread” warning when building in some environments.
|
||||
* Added a dist-hook target to the Makefile to reset the default options.h file.
|
||||
* Removed the need for the darwin-clang.m4 file with the updates provided by Brian A.
|
||||
* Renamed the AES assembly file so GCC on the Mac will build it using the preprocessor.
|
||||
* Add a disable option (--disable-optflags) to turn off the default optimization flags so user may supply their own custom flags.
|
||||
* Correctly touch the dummy fips.h header.
|
||||
This release of wolfSSL fixes 2 security vulnerability fixes.
|
||||
|
||||
Medium level fix for PRIME + PROBE attack combined with a variant of Lucky 13. Constant time hardening was done to avoid potential cache-based side channel attacks when verifying the MAC on a TLS packet. CBC cipher suites are susceptible on systems where an attacker could gain access and run a parallel program for inspecting caching. Only wolfSSL users that are using TLS/DTLS CBC cipher suites need to update. Users that have only AEAD and stream cipher suites set, or have built with WOLFSSL_MAX_STRENGTH (--enable-maxstrength), are not vulnerable. Thanks to Eyal Ronen, Kenny Paterson, and Adi Shamir for the report.
|
||||
|
||||
Medium level fix for a ECDSA side channel attack. wolfSSL is one of over a dozen vendors mentioned in the recent Technical Advisory “ROHNP” by author Ryan Keegan. Only wolfSSL users with long term ECDSA private keys using our fastmath or normal math libraries on systems where attackers can get access to the machine using the ECDSA key need to update. An attacker gaining access to the system could mount a memory cache side channel attack that could recover the key within a few thousand signatures. wolfSSL users that are not using ECDSA private keys, that are using the single precision math library, or that are using ECDSA offloading do not need to update. (blog with more information https://www.wolfssl.com/wolfssh-and-rohnp/)
|
||||
|
||||
|
||||
If you have questions on any of this, then email us at info@wolfssl.com.
|
||||
See INSTALL file for build instructions.
|
||||
More info can be found on-line at http://wolfssl.com/wolfSSL/Docs.html
|
||||
|
||||
# Resources
|
||||
|
||||
[wolfSSL Website](https://www.wolfssl.com/)
|
||||
|
||||
[wolfSSL Wiki](https://github.com/wolfSSL/wolfssl/wiki)
|
||||
|
||||
[FIPS FAQ](https://www.wolfssl.com/wolfSSL/fips.html)
|
||||
|
||||
[wolfSSL Manual](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-toc.html)
|
||||
|
||||
[wolfSSL API Reference](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-17-wolfssl-api-reference.html)
|
||||
|
||||
[wolfCrypt API Reference](https://wolfssl.com/wolfSSL/Docs-wolfssl-manual-18-wolfcrypt-api-reference.html)
|
||||
|
||||
[TLS 1.3](https://www.wolfssl.com/docs/tls13/)
|
||||
|
@ -7,7 +7,7 @@
|
||||
#
|
||||
AC_COPYRIGHT([Copyright (C) 2006-2018 wolfSSL Inc.])
|
||||
AC_PREREQ([2.63])
|
||||
AC_INIT([wolfssl],[3.15.0],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
|
||||
AC_INIT([wolfssl],[3.15.3],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
|
||||
# The following sets CFLAGS and CXXFLAGS to empty if unset on command line.
|
||||
@ -34,7 +34,7 @@ LT_PREREQ([2.2])
|
||||
LT_INIT([disable-static win32-dll])
|
||||
|
||||
#shared library versioning
|
||||
WOLFSSL_LIBRARY_VERSION=17:0:0
|
||||
WOLFSSL_LIBRARY_VERSION=18:0:0
|
||||
# | | |
|
||||
# +------+ | +---+
|
||||
# | | |
|
||||
|
12
rpm/spec.in
12
rpm/spec.in
@ -59,7 +59,7 @@ mkdir -p $RPM_BUILD_ROOT/
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||
%doc AUTHORS ChangeLog.md COPYING README
|
||||
%{_docdir}/wolfssl/taoCert.txt
|
||||
%{_docdir}/wolfssl/example/echoserver.c
|
||||
%{_docdir}/wolfssl/example/server.c
|
||||
@ -73,12 +73,12 @@ mkdir -p $RPM_BUILD_ROOT/
|
||||
%{_docdir}/wolfssl/README.txt
|
||||
%{_libdir}/libwolfssl.la
|
||||
%{_libdir}/libwolfssl.so
|
||||
%{_libdir}/libwolfssl.so.17
|
||||
%{_libdir}/libwolfssl.so.17.0.0
|
||||
%{_libdir}/libwolfssl.so.18
|
||||
%{_libdir}/libwolfssl.so.18.0.0
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS ChangeLog COPYING NEWS README
|
||||
%doc AUTHORS ChangeLog.md COPYING README
|
||||
%{_bindir}/wolfssl-config
|
||||
%{_includedir}/cyassl/callbacks.h
|
||||
%{_includedir}/cyassl/certs_test.h
|
||||
@ -190,6 +190,7 @@ mkdir -p $RPM_BUILD_ROOT/
|
||||
%{_includedir}/wolfssl/wolfcrypt/compress.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/cpuid.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/curve25519.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/cryptodev.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/des3.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/dh.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/dsa.h
|
||||
@ -197,7 +198,6 @@ mkdir -p $RPM_BUILD_ROOT/
|
||||
%{_includedir}/wolfssl/wolfcrypt/ed25519.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/error-crypt.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/fe_operations.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/fips.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/fips_test.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/ge_operations.h
|
||||
%{_includedir}/wolfssl/wolfcrypt/hash.h
|
||||
@ -287,6 +287,8 @@ mkdir -p $RPM_BUILD_ROOT/
|
||||
%{_libdir}/pkgconfig/wolfssl.pc
|
||||
|
||||
%changelog
|
||||
* Wed Jun 20 2018 Jacob Barthelmeh <jacob@wolfssl.com>
|
||||
- Remove NEWS, update ChangeLog to ChangeLog.md, remove wolfssl/wolfcrypt/fips.h, add wolfssl/wolfcrypt/cryptodev.h
|
||||
* Thu May 31 2018 John Safranek <john@wolfssl.com>
|
||||
- Update the version number on the library SO file.
|
||||
* Fri Mar 02 2018 Jacob Barthelmeh <jacob@wolfssl.com>
|
||||
|
@ -28,8 +28,8 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define LIBWOLFSSL_VERSION_STRING "3.15.0"
|
||||
#define LIBWOLFSSL_VERSION_HEX 0x03015000
|
||||
#define LIBWOLFSSL_VERSION_STRING "3.15.3"
|
||||
#define LIBWOLFSSL_VERSION_HEX 0x03015003
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Reference in New Issue
Block a user