Commit Graph

160 Commits (2ed2da0a8f1544803b7ee3c957e6ace54c930411)

Author SHA1 Message Date
JacobBarthelmeh e80deece82 adjust ChangeLog text 2024-03-21 00:18:44 +07:00
JacobBarthelmeh e5914effab prepare for release 5.7.0 2024-03-20 19:32:22 +07:00
Chris Conlon 5046e577d3 update ChangeLog/README with 5.6.6 release information 2023-12-18 15:24:14 -07:00
Eric Blankenhorn 7223b5a708 Fix spelling warnings 2023-11-22 12:34:56 -06:00
JacobBarthelmeh 6cf75a7d42 prepare for release 5.6.4 2023-10-30 07:59:00 -06:00
Juliusz Sosinowicz 6b28a68e42 Add DTLS 1.3 to README 2023-10-05 13:26:35 +02:00
Juliusz Sosinowicz 7a12202675 Init deb packaging
- rpm: Simplify script and list wolfSSL as packager
- add packaging github action
2023-08-23 22:01:12 +02:00
John Safranek c322e1f7f8
update readme 2023-06-18 20:24:28 -07:00
John Safranek 42e934b251
Update read-me and change-log for the release. 2023-06-16 09:47:35 -07:00
JacobBarthelmeh 72536e0e10 prepare for 5.6.3 2023-06-13 14:47:06 -06:00
JacobBarthelmeh 032ac405db prepare for release 5.6.2 2023-06-09 05:51:18 -07:00
JacobBarthelmeh 877e026da4 prepare for release 5.6.0 2023-03-23 21:44:18 -07:00
Jacob Barthelmeh 50aeb2f79e add quality of release statement 2022-12-22 10:42:18 -07:00
Jacob Barthelmeh cca63a465d prepare for release 5.5.4 2022-12-20 14:19:59 -07:00
JacobBarthelmeh 9b895b74bf update for version 5.5.3 2022-11-02 13:58:37 -07:00
JacobBarthelmeh eb52083afd update version to 5.5.2 2022-10-28 06:25:33 -07:00
Jacob Barthelmeh e720d4ab3b update changelog notes 2022-10-06 14:31:25 -06:00
Jacob Barthelmeh eb5076bb89 update changelog for release 5.5.1 2022-09-27 13:40:00 -06:00
Jacob Barthelmeh d75ce08d75 update readme for release 5.5.0 2022-08-30 09:31:28 -06:00
JacobBarthelmeh a48129eb99 update README for release 2022-07-11 07:28:15 -07:00
Jacob Barthelmeh a9c7bc9d00 fix markdown in readme notes 2022-05-05 17:12:55 -06:00
Jacob Barthelmeh 29401334d3 prepare for release 5.3.0 2022-05-02 17:08:38 -06:00
John Safranek ad8bf40b5e Update readme for release. 2022-02-20 13:05:04 -08:00
Jacob Barthelmeh 7dd50a1beb bump version for dev and update year in readme 2022-01-03 16:02:10 -07:00
JacobBarthelmeh 5f16a826dd update README for release v5.1.1 2022-01-03 09:39:16 -07:00
Jacob Barthelmeh 05a19c852b account for DTLS extra header size when reading msg from pool 2021-12-27 16:52:09 -07:00
Jacob Barthelmeh 816718ecd3 prepare for release 5.1.0 2021-12-27 10:34:09 -07:00
Jacob Barthelmeh ac5e9e5e7c bump to dev version and touch up readme 2021-11-01 15:50:03 -06:00
Jacob Barthelmeh d869c60605 prepare for release v5.0.0 2021-11-01 11:43:25 -06:00
Anthony Hu 33cb823148
Remove legacy NTRU and OQS (#4418)
* Remove NTRU and OQS

* Keep the DTLS serialization format backwards compatible.

* Remove n from mygetopt_long() call.

* Fix over-zealous deletion.

* Resolve problems found by @SparkiDev
2021-09-24 08:37:53 +10:00
Lealem Amedie 0722fb56d8 Adding README.md to examples dir and links to wolfssl-examples github repo in client/server.c 2021-08-02 20:27:41 -06:00
Jacob Barthelmeh b80d14a872 update mention of report to include CVE number and last names 2021-07-23 21:38:58 +07:00
Jacob Barthelmeh 932abbb6e6 update docs for 4.8.1 2021-07-20 21:20:15 +07:00
Jacob Barthelmeh f4c4cf8afe update changelog for release 4.8.0 2021-07-09 17:02:18 +07:00
Jacob Barthelmeh 3a9d533d2c update changelog with researchers names, thanks Aina and Olivier 2021-02-17 00:04:16 +07:00
Jacob Barthelmeh 8f88ac7442 add note about s/mime addition to changelog 2021-02-16 08:35:21 +07:00
Jacob Barthelmeh 847938f4d6 prepare for release v4.7.0 2021-02-16 02:41:37 +07:00
Jacob Barthelmeh 8ecc2f1771 add blog link to README and adjust for nginx build 2020-12-22 20:14:38 +07:00
Jacob Barthelmeh 47c186df34 prepare for release 4.6.0 2020-12-22 02:33:58 +07:00
John Safranek 05671d183c
update README/ChangeLog 2020-08-19 10:53:26 -07:00
John Safranek 5c6da52ac1
Update release notes. 2020-08-17 09:20:53 -07:00
John Safranek 3f6861ee82
FIPS Ready Fix with ECC Timing Resistance
Commit 6467de5 added some timing resistance to ECC shared secret
agreement. It involved adding an RNG object to the ecc keys so
a random z value can be added to the mix. The older FIPS release
has ECC outside the boundary, so it uses the new ECC code. FIPSv2
has ECC inside the boundary, but all the TLS code checks for that
version of FIPS and leaves out the calls to the new functions as
it is using an older version of ecc.c. FIPS Ready uses the latest
version of ecc.c but compiles as FIPSv2. So, the code outside of
the crypto layer is treating ECC as FIPSv2 and not calling the new
functions, but the crypto layer assumes the RNG should be present,
and errs out on testing.
1. Added a separate option for FIPS Ready to the enable-fips
   configure option. `--enable-fips=ready`. It will treat FIPS
   Ready as the next kind of FIPS release. FIPS Ready will be
   treated like FIPS v3 in the build.
2. Changed the C preprocessor checks for FIPS version 2 to be
   checks for not version 2, with respect to ECC Timing Resistance
   and FIPS builds.
2020-08-14 10:54:55 -07:00
John Safranek 95337e666c
Release Update
1. Update the usual versions.
2. Update README and ChangeLog.
3. Modify genecc and renewcerts to update two certificate files that had expired.
4. Update the expired certificate files.
2020-08-12 14:43:47 -07:00
John Safranek f7c233af9c
Fix error in the changelog. AES-CTR with AES-NI wasn't actually added. 2020-06-10 15:15:11 -07:00
John Safranek 83152c767f
touch dates 2020-04-21 10:50:59 -07:00
John Safranek 7b6cc2056b
Update release date in readme and changelog. 2020-04-21 10:21:59 -07:00
John Safranek c134626946
Update credit names on vuln notice in README. 2020-04-21 10:21:59 -07:00
John Safranek a29eac035b
Update credit for vulnerability report. 2020-04-21 10:21:58 -07:00
John Safranek 836e77508d
Remove notes for reverted DTLS commits. 2020-04-21 10:21:58 -07:00
John Safranek e84cd1a887
Updated the README file and ChangeLog for some spelling and omissions. 2020-04-21 10:21:58 -07:00