Skip to content

Commit 215ec5f

Browse files
committed
Merge tag 'v1.18.2' into develop
libtomcrypt v1.18.2
2 parents 8972027 + 7e7eb69 commit 215ec5f

File tree

7 files changed

+23
-8
lines changed

7 files changed

+23
-8
lines changed

changes

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
July 1st, 2018
2+
v1.18.2
3+
-- Fix Side Channel Based ECDSA Key Extraction (CVE-2018-12437) (PR #408)
4+
-- Fix potential stack overflow when DER flexi-decoding (CVE-2018-0739) (PR #373)
5+
-- Fix two-key 3DES (PR #390)
6+
-- Fix accelerated CTR mode (PR #359)
7+
-- Fix Fortuna PRNG (PR #363)
8+
-- Fix compilation on platforms where cc doesn't point to gcc (PR #382)
9+
-- Fix using the wrong environment variable LT instead of LIBTOOL (PR #392)
10+
-- Fix build on platforms where the compiler provides __WCHAR_MAX__ but wchar.h is not available (PR #390)
11+
-- Fix & re-factor crypt_list_all_sizes() and crypt_list_all_constants() (PR #414)
12+
-- Minor fixes (PR's #350 #351 #375 #377 #378 #379)
13+
114
January 22nd, 2018
215
v1.18.1
316
-- Fix wrong SHA3 blocksizes, thanks to Claus Fischer for reporting this via Mail (PR #329)

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = LibTomCrypt
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER=1.18.1-develop
41+
PROJECT_NUMBER=1.18.2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

makefile.mingw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ EXTRALIBS = -L../libtommath -ltommath
2727
#Compilation flags
2828
LTC_CFLAGS = -Isrc/headers -Itests -DLTC_SOURCE $(CFLAGS)
2929
LTC_LDFLAGS = $(LDFLAGS) $(EXTRALIBS)
30-
VERSION=1.18.1-develop
30+
VERSION=1.18.2
3131

3232
#Libraries to be created
3333
LIBMAIN_S =libtomcrypt.a

makefile.msvc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ EXTRALIBS = ../libtommath/tommath.lib
2222
#Compilation flags
2323
LTC_CFLAGS = /nologo /Isrc/headers/ /Itests/ /D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE /DLTC_SOURCE /W3 $(CFLAGS)
2424
LTC_LDFLAGS = advapi32.lib $(EXTRALIBS)
25-
VERSION=1.18.1-develop
25+
VERSION=1.18.2
2626

2727
#Libraries to be created (this makefile builds only static libraries)
2828
LIBMAIN_S =tomcrypt.lib

makefile.unix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ EXTRALIBS = ../libtommath/libtommath.a
3939
#Compilation flags
4040
LTC_CFLAGS = -Isrc/headers -Itests -DLTC_SOURCE $(CFLAGS)
4141
LTC_LDFLAGS = $(LDFLAGS) $(EXTRALIBS)
42-
VERSION=1.18.1-develop
42+
VERSION=1.18.2
4343

4444
#Libraries to be created (this makefile builds only static libraries)
4545
LIBMAIN_S =libtomcrypt.a

makefile_include.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# (GNU make only)
44

55
# The version - BEWARE: VERSION, VERSION_PC and VERSION_LT are updated via ./updatemakes.sh
6-
VERSION=1.18.1-develop
7-
VERSION_PC=1.18.1
6+
VERSION=1.18.2
7+
VERSION_PC=1.18.2
88
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
99
VERSION_LT=1:1
1010

@@ -429,7 +429,7 @@ doc/crypt.pdf: $(call print-help,doc/crypt.pdf,Builds the Developer Manual)
429429
$(MAKE) -C doc/ crypt.pdf V=$(V)
430430

431431

432-
install_all: $(call print-help,install_all,Install everything - library bins docs tests) install install_bins install_docs install_test
432+
install_all: $(call print-help,install_all,Install everything - library bins docs tests) install install_bins install_docs
433433

434434
INSTALL_OPTS ?= -m 644
435435

src/headers/tomcrypt.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ extern "C" {
2727

2828
/* version */
2929
#define CRYPT 0x0118
30-
#define SCRYPT "1.18.1-develop"
30+
#define SCRYPT "1.18.2"
3131

3232
/* max size of either a cipher/hash block or symmetric key [largest of the two] */
3333
#define MAXBLOCKSIZE 144
3434

35+
#ifndef TAB_SIZE
3536
/* descriptor table size */
3637
#define TAB_SIZE 34
38+
#endif
3739

3840
/* error codes [will be expanded in future releases] */
3941
enum {

0 commit comments

Comments
 (0)