diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rwxr-xr-x | tap-driver.sh | 8 |
2 files changed, 17 insertions, 4 deletions
@@ -28,6 +28,19 @@ history is also available from Git. | |||
28 | 28 | ||
29 | LibreSSL Portable Release Notes: | 29 | LibreSSL Portable Release Notes: |
30 | 30 | ||
31 | 2.8.3 - Stable release | ||
32 | |||
33 | * Fixed warnings about clock_gettime on Windows Visual Studio builds. | ||
34 | |||
35 | * Fixed CMake builds on systems where getpagesize is defined as an | ||
36 | inline function. | ||
37 | |||
38 | * Implemented coordinate blinding for EC_POINT as an additional | ||
39 | mitigation for the portsmash vulnerability. | ||
40 | |||
41 | * Fixed a non-uniformity in getentropy(2) emulation where a block of | ||
42 | all zeroes would be discarded. | ||
43 | |||
31 | 2.8.2 - Stable release | 44 | 2.8.2 - Stable release |
32 | 45 | ||
33 | * Added Wycheproof support for ECDH and ECDSA Web Crypto test vectors, | 46 | * Added Wycheproof support for ECDH and ECDSA Web Crypto test vectors, |
diff --git a/tap-driver.sh b/tap-driver.sh index 2516e9c..82efa96 100755 --- a/tap-driver.sh +++ b/tap-driver.sh | |||
@@ -1,5 +1,5 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | # Copyright (C) 2011-2018 Free Software Foundation, Inc. | 2 | # Copyright (C) 2011-2017 Free Software Foundation, Inc. |
3 | # | 3 | # |
4 | # This program is free software; you can redistribute it and/or modify | 4 | # This program is free software; you can redistribute it and/or modify |
5 | # it under the terms of the GNU General Public License as published by | 5 | # it under the terms of the GNU General Public License as published by |
@@ -12,7 +12,7 @@ | |||
12 | # GNU General Public License for more details. | 12 | # GNU General Public License for more details. |
13 | # | 13 | # |
14 | # You should have received a copy of the GNU General Public License | 14 | # You should have received a copy of the GNU General Public License |
15 | # along with this program. If not, see <https://www.gnu.org/licenses/>. | 15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
16 | 16 | ||
17 | # As a special exception to the GNU General Public License, if you | 17 | # As a special exception to the GNU General Public License, if you |
18 | # distribute this file as part of a program that contains a | 18 | # distribute this file as part of a program that contains a |
@@ -132,7 +132,7 @@ fi | |||
132 | # last `echo $?' statement), and would thus die reporting an internal | 132 | # last `echo $?' statement), and would thus die reporting an internal |
133 | # error. | 133 | # error. |
134 | # For more information, see the Autoconf manual and the threads: | 134 | # For more information, see the Autoconf manual and the threads: |
135 | # <https://lists.gnu.org/archive/html/bug-autoconf/2011-09/msg00004.html> | 135 | # <http://lists.gnu.org/archive/html/bug-autoconf/2011-09/msg00004.html> |
136 | # <http://mail.opensolaris.org/pipermail/ksh93-integration-discuss/2009-February/004121.html> | 136 | # <http://mail.opensolaris.org/pipermail/ksh93-integration-discuss/2009-February/004121.html> |
137 | trap : 1 3 2 13 15 | 137 | trap : 1 3 2 13 15 |
138 | if test $merge -gt 0; then | 138 | if test $merge -gt 0; then |
@@ -643,7 +643,7 @@ test $? -eq 0 || fatal "I/O or internal error" | |||
643 | # Local Variables: | 643 | # Local Variables: |
644 | # mode: shell-script | 644 | # mode: shell-script |
645 | # sh-indentation: 2 | 645 | # sh-indentation: 2 |
646 | # eval: (add-hook 'before-save-hook 'time-stamp) | 646 | # eval: (add-hook 'write-file-hooks 'time-stamp) |
647 | # time-stamp-start: "scriptversion=" | 647 | # time-stamp-start: "scriptversion=" |
648 | # time-stamp-format: "%:y-%02m-%02d.%02H" | 648 | # time-stamp-format: "%:y-%02m-%02d.%02H" |
649 | # time-stamp-time-zone: "UTC0" | 649 | # time-stamp-time-zone: "UTC0" |