Skip to content

Commit 58ef8dc

Browse files
committed
Support OpenSSL 1.1 (tested with OpenSSL 1.1.1d) and LibreSSL (tested with
LibreSSL 3.0.2). Fixes issue #4.
1 parent 1d319ff commit 58ef8dc

File tree

6 files changed

+218
-15
lines changed

6 files changed

+218
-15
lines changed

Diff for: ChangeLog.asc

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
= ChangeLog file for RNCryptor-C
22

3+
= v1.06
4+
* Support OpenSSL 1.1 (tested with OpenSSL 1.1.1d) and LibreSSL (tested with
5+
LibreSSL 3.0.2). Fixes issue #4.
6+
7+
(Jan-06-2020)
8+
39
= v1.05
410
* Fix a custom kdf_iter that was not handled correctly when decrypting.
511
Thanks to Vincent <vincentxueios at gmail.com>

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ARFLAGS = cruv
1212
RANLIB= ranlib
1313
LIBNAME= librncryptorc.a
1414
PROGNAME=
15-
INSTALL = /usr/bin/install -c
15+
INSTALL = /usr/local/bin/ginstall -c
1616
INSTALL_PROGRAM = ${INSTALL}
1717
INSTALL_DATA = ${INSTALL} -m 644
1818
INSTALL_EXEC = @INSTALL_EXEC@
@@ -53,7 +53,7 @@ OBJS = rncryptor_c.o mutils.o
5353
rm -f $@
5454
$(CC) $(CFLAGS) -c $*.c
5555

56-
all: $(LIBNAME)
56+
all: $(LIBNAME) examples
5757

5858
$(LIBNAME) : $(OBJS)
5959
rm -f $@

Diff for: Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ OBJS = rncryptor_c.o mutils.o
5353
rm -f $@
5454
$(CC) $(CFLAGS) -c $*.c
5555

56-
all: $(LIBNAME)
56+
all: $(LIBNAME) examples
5757

5858
$(LIBNAME) : $(OBJS)
5959
rm -f $@

0 commit comments

Comments
 (0)