]> git.ipfire.org Git - thirdparty/nettle.git/log
thirdparty/nettle.git
20 years agoReverted the latest two changes; update
Niels Möller [Sun, 24 Oct 2004 20:54:38 +0000 (22:54 +0200)] 
Reverted the latest two changes; update
bost src and dst pointers in the loop, and use plain addb when
updating j. These two previous changes slowed the code down on AMD
Duron.

Rev: src/nettle/x86/arcfour-crypt.asm:1.10

20 years agoComment binary compatibility.
Niels Möller [Thu, 21 Oct 2004 19:59:55 +0000 (21:59 +0200)] 
Comment binary compatibility.

Rev: src/nettle/NEWS:1.18

20 years ago(SHLIBMINOR): Updated, shared library version is
Niels Möller [Thu, 21 Oct 2004 19:58:05 +0000 (21:58 +0200)] 
(SHLIBMINOR): Updated, shared library version is
now libnettle.so.2.3, soname still libnettle.so.2.

Rev: src/nettle/ChangeLog:1.288
Rev: src/nettle/configure.ac:1.47

20 years ago* Makefile.in (install-shared): Use $(INSTALL_PROGRAM).
Niels Möller [Thu, 21 Oct 2004 19:57:24 +0000 (21:57 +0200)] 
* Makefile.in (install-shared): Use $(INSTALL_PROGRAM).

Rev: src/nettle/Makefile.in:1.7

20 years ago(DISTFILES): Added asm.m4.
Niels Möller [Thu, 21 Oct 2004 17:29:23 +0000 (19:29 +0200)] 
(DISTFILES): Added asm.m4.

Rev: src/nettle/ChangeLog:1.287
Rev: src/nettle/Makefile.in:1.6

20 years ago* examples/Makefile.in: Deleted all configure-related rules,
Niels Möller [Thu, 21 Oct 2004 16:07:32 +0000 (18:07 +0200)] 
* examples/Makefile.in: Deleted all configure-related rules,
except the one rebuilding this Makefile. Run make at top level if
other configure related files change.
* tools/Makefile.in: Likewise.
* testsuite/Makefile.in: Likewise.

Rev: src/nettle/examples/Makefile.in:1.5
Rev: src/nettle/testsuite/Makefile.in:1.5
Rev: src/nettle/tools/Makefile.in:1.6

20 years ago* configure.ac: Replaced AC_OUTPUT(list...) with an AC_OUTPUT
Niels Möller [Thu, 21 Oct 2004 16:07:17 +0000 (18:07 +0200)] 
* configure.ac: Replaced AC_OUTPUT(list...) with an AC_OUTPUT
without arguments, and AC_CONFIG_FILES listing the files.

* Makefile.in: Changed the assembler rules as suffix rules.
Rewrote the configure-related rules, mostly based on the example
in the autoconf manual.

Rev: src/nettle/ChangeLog:1.286
Rev: src/nettle/Makefile.in:1.5
Rev: src/nettle/configure.ac:1.46

20 years agoStarted on NEWS-entry for 1.11.
Niels Möller [Thu, 21 Oct 2004 08:37:28 +0000 (10:37 +0200)] 
Started on NEWS-entry for 1.11.

Rev: src/nettle/NEWS:1.17

20 years agoTypo fix.
Niels Möller [Thu, 21 Oct 2004 08:37:06 +0000 (10:37 +0200)] 
Typo fix.

Rev: src/nettle/ChangeLog:1.285

20 years ago*** empty log message ***
Niels Möller [Wed, 20 Oct 2004 21:24:08 +0000 (23:24 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.284

20 years ago(NCOMPAT): Disable openssl backwards
Niels Möller [Wed, 20 Oct 2004 21:24:05 +0000 (23:24 +0200)] 
(NCOMPAT): Disable openssl backwards
compatibility.

Rev: src/nettle/examples/nettle-openssl.c:1.4

20 years ago* config.make.in: Insert $(PRE_CPPFLAGS) and $(PRE_LDFLAGS) before
Niels Möller [Wed, 20 Oct 2004 19:04:59 +0000 (21:04 +0200)] 
* config.make.in: Insert $(PRE_CPPFLAGS) and $(PRE_LDFLAGS) before
$(CPPFLAGS) and $(LDFLAGS). This mechanism replaces $(INCLUDES).

* examples/Makefile.in (PRE_CPPFLAGS, PRE_LDFLAGS): Use these
flags to get -I.. and -L.. early on the command line.
* testsuite/Makefile.in: Likewise
* tools/Makefile.in: Likewise.

Rev: src/nettle/ChangeLog:1.283
Rev: src/nettle/config.make.in:1.4
Rev: src/nettle/examples/Makefile.in:1.4
Rev: src/nettle/testsuite/Makefile.in:1.4
Rev: src/nettle/tools/Makefile.in:1.5

20 years ago*** empty log message ***
Niels Möller [Wed, 20 Oct 2004 16:30:06 +0000 (18:30 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.282

20 years ago* Makefile.in: In the assembler rules, there's no need to look in
Niels Möller [Wed, 20 Oct 2004 16:29:58 +0000 (18:29 +0200)] 
* Makefile.in: In the assembler rules, there's no need to look in
$(srcdir) for the input file.

Rev: src/nettle/Makefile.in:1.4

20 years ago* x86/arcfour-crypt.asm: Reduced inner loop by one instruction, by
Niels Möller [Wed, 20 Oct 2004 16:28:18 +0000 (18:28 +0200)] 
* x86/arcfour-crypt.asm: Reduced inner loop by one instruction, by
precomputing the offset between src and dst.

Rev: src/nettle/x86/arcfour-crypt.asm:1.9

20 years ago(.c.$(OBJEXT)): Removed redundant -I.. flag.
Niels Möller [Wed, 20 Oct 2004 16:26:56 +0000 (18:26 +0200)] 
(.c.$(OBJEXT)): Removed redundant -I.. flag.

Rev: src/nettle/tools/Makefile.in:1.4

20 years agoReverted HAVE_CONFIG_H change.
Niels Möller [Wed, 20 Oct 2004 16:22:44 +0000 (18:22 +0200)] 
Reverted HAVE_CONFIG_H change.

Rev: src/nettle/tools/sexp-conv.c:1.17

20 years agoTry replacing #if HAVE_CONFIG_H with #ifdef HAVE_CONFIG_H.
Niels Möller [Wed, 20 Oct 2004 15:29:11 +0000 (17:29 +0200)] 
Try replacing #if HAVE_CONFIG_H with #ifdef HAVE_CONFIG_H.

Rev: src/nettle/tools/sexp-conv.c:1.16

20 years ago(nettle_arcfour_crypt): Replaced addb ->
Niels Möller [Wed, 20 Oct 2004 14:30:39 +0000 (16:30 +0200)] 
(nettle_arcfour_crypt): Replaced addb ->
addl + andl $0xff, improving speed on PPro by another 15%.

Rev: src/nettle/x86/arcfour-crypt.asm:1.8

20 years ago*** empty log message ***
Niels Möller [Wed, 20 Oct 2004 08:15:15 +0000 (10:15 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.281

20 years ago* tools/Makefile.in (install): Support DESTDIR.
Niels Möller [Wed, 20 Oct 2004 08:15:00 +0000 (10:15 +0200)] 
* tools/Makefile.in (install): Support DESTDIR.
(uninstall): New target.

Rev: src/nettle/tools/Makefile.in:1.3

20 years ago* testsuite/Makefile.in (uninstall): New dummy target.
Niels Möller [Wed, 20 Oct 2004 08:14:33 +0000 (10:14 +0200)] 
* testsuite/Makefile.in (uninstall): New dummy target.

Rev: src/nettle/testsuite/Makefile.in:1.3

20 years agoNew file (copied from automake-1.8.5).
Niels Möller [Wed, 20 Oct 2004 08:13:34 +0000 (10:13 +0200)] 
New file (copied from automake-1.8.5).

Rev: src/nettle/config.sub:1.1

20 years ago* examples/Makefile.in (SOURCES): Added rsa-sign.c and rsa-verify.c.
Niels Möller [Wed, 20 Oct 2004 08:12:50 +0000 (10:12 +0200)] 
* examples/Makefile.in (SOURCES): Added rsa-sign.c and rsa-verify.c.
(DISTFILES): Added getopt.h.
(install uninstall): New dummy targets.

Rev: src/nettle/examples/Makefile.in:1.3

20 years ago* config.make.in (.PHONY): Added more targets.
Niels Möller [Wed, 20 Oct 2004 08:11:32 +0000 (10:11 +0200)] 
* config.make.in (.PHONY): Added more targets.

Rev: src/nettle/config.make.in:1.3

20 years ago* Makefile.in (.texinfo.info, .texinfo.html): New targets. Added
Niels Möller [Wed, 20 Oct 2004 08:10:59 +0000 (10:10 +0200)] 
* Makefile.in (.texinfo.info, .texinfo.html): New targets. Added
support for uninstall and DESTDIR. Various fixes to install and
distcheck.

Rev: src/nettle/Makefile.in:1.3

20 years ago* examples/Makefile.in (INCLUDES): Added -I flags.
Niels Möller [Tue, 19 Oct 2004 22:45:33 +0000 (00:45 +0200)] 
* examples/Makefile.in (INCLUDES): Added -I flags.
(distdir): Use $^ to refer to the files.
(distclean): New target.
* testsuite/Makefile.in: Likewise.
* tools/Makefile.in: Likewise.

Rev: src/nettle/tools/Makefile.in:1.2

20 years ago* examples/Makefile.in (INCLUDES): Added -I flags.
Niels Möller [Tue, 19 Oct 2004 22:45:05 +0000 (00:45 +0200)] 
* examples/Makefile.in (INCLUDES): Added -I flags.
(distdir): Use $^ to refer to the files.
(distclean): New target.
* testsuite/Makefile.in: Likewise.

Rev: src/nettle/testsuite/Makefile.in:1.2

20 years ago* examples/Makefile.in (INCLUDES): Added -I flags.
Niels Möller [Tue, 19 Oct 2004 22:44:43 +0000 (00:44 +0200)] 
* examples/Makefile.in (INCLUDES): Added -I flags.
(distdir): Use $^ to refer to the files.
(distclean): New target.

Rev: src/nettle/examples/Makefile.in:1.2

20 years ago(INCLUDES): Need -I flags for VPATH build.
Niels Möller [Tue, 19 Oct 2004 22:43:28 +0000 (00:43 +0200)] 
(INCLUDES): Need -I flags for VPATH build.
(clean distclean mostlyclean maintainer-clean): Clean
subdirectories first.
(DISTFILES): Added a bunch of files.
(des_headers): Added desCore rules.
(install-here): Split off target install-headers, which uses $^ to
refer to the files.
(distdir): Use $^ to refer to the files.
distcheck): Fixes.

Rev: src/nettle/Makefile.in:1.2

20 years ago(COMPILE): Add $(INCLUDE) to the line.
Niels Möller [Tue, 19 Oct 2004 22:38:11 +0000 (00:38 +0200)] 
(COMPILE): Add $(INCLUDE) to the line.

Rev: src/nettle/config.make.in:1.2

20 years ago*** empty log message ***
Niels Möller [Tue, 19 Oct 2004 20:22:22 +0000 (22:22 +0200)] 
*** empty log message ***

Rev: src/nettle/.cvsignore:1.16
Rev: src/nettle/ChangeLog:1.280

20 years ago* config.make.in: New file, with shared Makefile variables and rules.
Niels Möller [Tue, 19 Oct 2004 20:21:42 +0000 (22:21 +0200)] 
* config.make.in: New file, with shared Makefile variables and rules.

Rev: src/nettle/config.make.in:1.1

20 years ago*** empty log message ***
Niels Möller [Tue, 19 Oct 2004 20:19:48 +0000 (22:19 +0200)] 
*** empty log message ***

Rev: src/nettle/.cvsignore:1.15
Rev: src/nettle/examples/.cvsignore:1.7
Rev: src/nettle/testsuite/.cvsignore:1.25
Rev: src/nettle/tools/.cvsignore:1.4

20 years ago* .bootstrap: Don't run aclocal and automake.
Niels Möller [Tue, 19 Oct 2004 20:18:36 +0000 (22:18 +0200)] 
* .bootstrap: Don't run aclocal and automake.

Rev: src/nettle/.bootstrap:1.3

20 years agoStop using automake. Replaced each Makefile.am with a hand-written
Niels Möller [Tue, 19 Oct 2004 20:17:48 +0000 (22:17 +0200)] 
Stop using automake. Replaced each Makefile.am with a hand-written
Makefile.in.
* configure.ac: New output variable CCPIC_MAYBE. New output file
config.make. Replaced automake constructions.

Rev: src/nettle/Makefile.am:1.81(DEAD)
Rev: src/nettle/Makefile.in:1.1
Rev: src/nettle/configure.ac:1.45
Rev: src/nettle/examples/Makefile.am:1.22(DEAD)
Rev: src/nettle/examples/Makefile.in:1.1
Rev: src/nettle/testsuite/Makefile.am:1.42(DEAD)
Rev: src/nettle/testsuite/Makefile.in:1.1
Rev: src/nettle/tools/Makefile.am:1.8(DEAD)
Rev: src/nettle/tools/Makefile.in:1.1

20 years ago(nettle_arcfour_crypt): Replace incb ->
Niels Möller [Mon, 18 Oct 2004 19:36:18 +0000 (21:36 +0200)] 
(nettle_arcfour_crypt): Replace incb ->
incl + andl, to improve speed on PPro and PII. Suggested by
Fredrik Olsson.

Rev: src/nettle/x86/arcfour-crypt.asm:1.7

20 years ago* examples/rsa-encrypt-test: Avoid reading and executing a file at
Niels Möller [Fri, 8 Oct 2004 15:06:05 +0000 (17:06 +0200)] 
* examples/rsa-encrypt-test: Avoid reading and executing a file at
the same time.
* examples/setup-env: Likewise.

Rev: src/nettle/ChangeLog:1.279
Rev: src/nettle/examples/rsa-encrypt-test:1.3
Rev: src/nettle/examples/setup-env:1.2

20 years ago*** empty log message ***
Niels Möller [Wed, 6 Oct 2004 15:27:19 +0000 (17:27 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.278

20 years agoIgnore __i686.get_pc_thunk.bx and
Niels Möller [Wed, 6 Oct 2004 15:27:08 +0000 (17:27 +0200)] 
Ignore __i686.get_pc_thunk.bx and
similar symbols.

Rev: src/nettle/testsuite/symbols-test:1.6

20 years ago*** empty log message ***
Niels Möller [Tue, 5 Oct 2004 21:46:43 +0000 (23:46 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.277

20 years ago(q_table): Use a const pointer array.
Niels Möller [Tue, 5 Oct 2004 21:46:33 +0000 (23:46 +0200)] 
(q_table): Use a const pointer array.

Rev: src/nettle/twofish.c:1.7

20 years ago* sexp2dsa.c (dsa_keypair_from_sexp_alist): Use a const pointer
Niels Möller [Tue, 5 Oct 2004 21:45:48 +0000 (23:45 +0200)] 
* sexp2dsa.c (dsa_keypair_from_sexp_alist): Use a const pointer
array for the keywords.
(dsa_signature_from_sexp): Likewise.
* sexp2rsa.c (rsa_keypair_from_sexp_alist): Likewise.
(rsa_keypair_from_sexp): Likewise.

Rev: src/nettle/sexp2dsa.c:1.5
Rev: src/nettle/sexp2rsa.c:1.12

20 years ago(sexp_iterator_check_types): Use an argument of type
Niels Möller [Tue, 5 Oct 2004 21:44:28 +0000 (23:44 +0200)] 
(sexp_iterator_check_types): Use an argument of type
"const uint8_t * const *" for the types list.
(sexp_iterator_assoc): Likewise, for the keys list.

Rev: src/nettle/sexp.c:1.16
Rev: src/nettle/sexp.h:1.17

20 years agoFixes to handle multiple .data and .rodata
Niels Möller [Tue, 5 Oct 2004 21:42:34 +0000 (23:42 +0200)] 
Fixes to handle multiple .data and .rodata
sections. Also fixed to handle the last file correctly.

Rev: src/nettle/list-obj-sizes.awk:1.4

20 years agoMore comments on the problem with the libnettle.a dependency.
Niels Möller [Tue, 5 Oct 2004 17:06:52 +0000 (19:06 +0200)] 
More comments on the problem with the libnettle.a dependency.

Rev: src/nettle/tools/Makefile.am:1.7

20 years agoFixed MAC typos noticed by Linus Nordberg.
Niels Möller [Sun, 26 Sep 2004 07:25:36 +0000 (09:25 +0200)] 
Fixed MAC typos noticed by Linus Nordberg.

Rev: src/nettle/nettle.texinfo:1.27

20 years ago(SHLIBLINK, SHLIBLIBS): On cygwin, linking needs
Niels Möller [Thu, 23 Sep 2004 18:44:59 +0000 (20:44 +0200)] 
(SHLIBLINK, SHLIBLIBS): On cygwin, linking needs
-Wl,--whole-archive $(OBJECTS) -Wl,--no-whole-archive $(LIBS).

Rev: src/nettle/ChangeLog:1.276
Rev: src/nettle/configure.ac:1.44

20 years agoMore Cygwin fixes.
Niels Möller [Thu, 23 Sep 2004 16:31:49 +0000 (18:31 +0200)] 
More Cygwin fixes.

Rev: src/nettle/Makefile.am:1.80
Rev: src/nettle/configure.ac:1.43

20 years ago*** empty log message ***
Niels Möller [Wed, 22 Sep 2004 17:28:12 +0000 (19:28 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.275

20 years agoSetup SHLIBFORLINK and friends for cygwin.
Niels Möller [Wed, 22 Sep 2004 17:27:33 +0000 (19:27 +0200)] 
Setup SHLIBFORLINK and friends for cygwin.

Rev: src/nettle/configure.ac:1.42

20 years agoStrip *_a-prefix from all file names.
Niels Möller [Wed, 22 Sep 2004 17:26:40 +0000 (19:26 +0200)] 
Strip *_a-prefix from all file names.

Rev: src/nettle/list-obj-sizes.awk:1.3

20 years ago(libnettle_a_SOURCES): List only .c files. Headers
Niels Möller [Wed, 22 Sep 2004 17:25:40 +0000 (19:25 +0200)] 
(libnettle_a_SOURCES): List only .c files. Headers
moved to noinst_HEADERS.
(SHLIBOBJECTS): Substitute from libnettle_a_SOURCES, not
am_libnettle_a_OBJECTS, since the latter includes
libnettle_a-prefixes with some automake versions.
(SHLIBSONAME): Check if this name is empty, which is the case on
cygwin, before using it.

Rev: src/nettle/Makefile.am:1.79

20 years ago* configure.ac: New command line option --disable-pic. Use
Niels Möller [Mon, 30 Aug 2004 22:21:26 +0000 (00:21 +0200)] 
* configure.ac: New command line option --disable-pic. Use
LSH_CCPIC.

* Makefile.am (libnettle_a_CFLAGS): Added $(CCPIC), to attempt to
build also the static library as position independent code.

Rev: src/nettle/ChangeLog:1.274
Rev: src/nettle/Makefile.am:1.78
Rev: src/nettle/configure.ac:1.41

20 years ago*** empty log message ***
Niels Möller [Tue, 24 Aug 2004 18:36:21 +0000 (20:36 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.273

20 years ago(des_cbc_cksum): Pad input with NUL:s, if it's not
Niels Möller [Tue, 24 Aug 2004 18:36:16 +0000 (20:36 +0200)] 
(des_cbc_cksum): Pad input with NUL:s, if it's not
an integral number of blocks.

Rev: src/nettle/des-compat.c:1.15

20 years ago*** empty log message ***
Niels Möller [Tue, 24 Aug 2004 15:53:11 +0000 (17:53 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.272

20 years ago* testsuite/arctwo-test.c, arctwo.h, arctwo.c
Niels Möller [Tue, 24 Aug 2004 15:52:51 +0000 (17:52 +0200)] 
* testsuite/arctwo-test.c, arctwo.h, arctwo.c
(arctwo_set_key_ekb): Fixed typo; it should be "ekb", not "ebk".

Rev: src/nettle/arctwo.c:1.2
Rev: src/nettle/arctwo.h:1.2
Rev: src/nettle/testsuite/arctwo-test.c:1.2

20 years agoDocumentation about ARCTWO.
Niels Möller [Tue, 24 Aug 2004 15:50:48 +0000 (17:50 +0200)] 
Documentation about ARCTWO.

Rev: src/nettle/nettle.texinfo:1.26

20 years ago*** empty log message ***
Niels Möller [Tue, 24 Aug 2004 15:26:14 +0000 (17:26 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.271

20 years ago* testsuite/Makefile.am (noinst_PROGRAMS): Added arctwo-test.
Simon Josefsson [Tue, 24 Aug 2004 15:25:14 +0000 (17:25 +0200)] 
* testsuite/Makefile.am (noinst_PROGRAMS): Added arctwo-test.

Rev: src/nettle/testsuite/Makefile.am:1.41

20 years agoIgnore arctwo-test.
Niels Möller [Tue, 24 Aug 2004 15:24:31 +0000 (17:24 +0200)] 
Ignore arctwo-test.

Rev: src/nettle/testsuite/.cvsignore:1.24

20 years ago(libnettleinclude_HEADERS): Added arctwo.h.
Simon Josefsson [Tue, 24 Aug 2004 15:24:13 +0000 (17:24 +0200)] 
(libnettleinclude_HEADERS): Added arctwo.h.
(libnettle_a_SOURCES): Added arctwo.c, arctwo.h and arctwo-meta.c.

Rev: src/nettle/Makefile.am:1.77

20 years ago(nettle_arctwo40, nettle_arctwo64)
Simon Josefsson [Tue, 24 Aug 2004 15:23:05 +0000 (17:23 +0200)] 
(nettle_arctwo40, nettle_arctwo64)
(nettle_arctwo64, nettle_arctwo_gutmann128): Declare ciphers.

Rev: src/nettle/nettle-meta.h:1.13

20 years agoNew file.
Simon Josefsson [Tue, 24 Aug 2004 15:21:54 +0000 (17:21 +0200)] 
New file.

Rev: src/nettle/arctwo-meta.c:1.1
Rev: src/nettle/arctwo.c:1.1
Rev: src/nettle/arctwo.h:1.1
Rev: src/nettle/testsuite/arctwo-test.c:1.1

20 years ago(LE_READ_UINT16, LE_WRITE_UINT16): New macros.
Simon Josefsson [Tue, 24 Aug 2004 14:29:00 +0000 (16:29 +0200)] 
(LE_READ_UINT16, LE_WRITE_UINT16): New macros.

Rev: src/nettle/macros.h:1.7

20 years ago*** empty log message ***
Niels Möller [Mon, 23 Aug 2004 19:50:10 +0000 (21:50 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.270

20 years ago(test_main): Added second collision.
Niels Möller [Mon, 23 Aug 2004 19:50:00 +0000 (21:50 +0200)] 
(test_main): Added second collision.

Rev: src/nettle/testsuite/md5-test.c:1.5

20 years ago(test_main): Added collision, found in 2004.
Niels Möller [Mon, 23 Aug 2004 19:23:24 +0000 (21:23 +0200)] 
(test_main): Added collision, found in 2004.

Rev: src/nettle/testsuite/md5-test.c:1.4

20 years ago*** empty log message ***
Niels Möller [Mon, 23 Aug 2004 17:05:30 +0000 (19:05 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.269

20 years ago(test_main): Added first half of a
Niels Möller [Mon, 23 Aug 2004 17:05:17 +0000 (19:05 +0200)] 
(test_main): Added first half of a
collision test case.

Rev: src/nettle/testsuite/md5-test.c:1.3

20 years ago* des-compat.c (des_cbc_cksum): Changed input argument to be of
Niels Möller [Mon, 23 Aug 2004 17:04:46 +0000 (19:04 +0200)] 
* des-compat.c (des_cbc_cksum): Changed input argument to be of
type const uint8_t * (was const des_cblock *).

* des-compat.h (const_des_cblock): New bogus type. Disabled use of
const, for compatibility with openssl.

Rev: src/nettle/des-compat.c:1.14
Rev: src/nettle/des-compat.h:1.12
Rev: src/nettle/testsuite/des-compat-test.c:1.7

21 years ago*** empty log message ***
Niels Möller [Tue, 8 Jun 2004 15:46:52 +0000 (17:46 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.268

21 years agoRenamed log and ilog to gf2_log and gf2_exp.
Niels Möller [Tue, 8 Jun 2004 15:26:15 +0000 (17:26 +0200)] 
Renamed log and ilog to gf2_log and gf2_exp.

Rev: src/nettle/aesdata.c:1.4

21 years agoChanged "bouillon" to "stock", after suggestion by Calle.
Niels Möller [Thu, 29 Apr 2004 10:35:57 +0000 (12:35 +0200)] 
Changed "bouillon" to "stock", after suggestion by Calle.

Rev: src/nettle/nettle.texinfo:1.25

21 years ago*** empty log message ***
Niels Möller [Wed, 7 Apr 2004 20:31:49 +0000 (22:31 +0200)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.267

21 years ago(log, ilog): Deleted unused tables.
Niels Möller [Wed, 7 Apr 2004 20:31:40 +0000 (22:31 +0200)] 
(log, ilog): Deleted unused tables.

Rev: src/nettle/aes-set-encrypt-key.c:1.3

21 years ago(gf2_log, gf2_exp, mult): Renamed tables,
Niels Möller [Wed, 7 Apr 2004 20:30:49 +0000 (22:30 +0200)] 
(gf2_log, gf2_exp, mult): Renamed tables,
were log and ilog.

Rev: src/nettle/aes-set-decrypt-key.c:1.3

21 years ago* configure.ac: Use AC_CONFIG_AUX_DIR([.]).
Niels Möller [Sat, 20 Mar 2004 12:53:09 +0000 (13:53 +0100)] 
* configure.ac: Use AC_CONFIG_AUX_DIR([.]).

* configure.ac: Use AC_CONFIG_AUX_DIR([.]).

* configure.ac: Use AC_CONFIG_AUX_DIR([.]).

* configure.ac: Use AC_CONFIG_AUX_DIR([.]). Converted to new style
AC_INIT and AM_INIT_AUTOMAKE.

* configure.ac: Use AC_CONFIG_AUX_DIR([.]).

Rev: src/nettle/ChangeLog:1.266
Rev: src/nettle/configure.ac:1.40

21 years ago(test_program): Strip .exe suffix from name.
Niels Möller [Thu, 18 Mar 2004 15:15:23 +0000 (16:15 +0100)] 
(test_program): Strip .exe suffix from name.

Rev: misc/run-tests:1.2

21 years ago*** empty log message ***
Niels Möller [Thu, 18 Mar 2004 15:11:25 +0000 (16:11 +0100)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.265

21 years ago(read_file): Display a message if fopen fails.
Niels Möller [Thu, 18 Mar 2004 15:11:22 +0000 (16:11 +0100)] 
(read_file): Display a message if fopen fails.

Rev: src/nettle/examples/io.c:1.8

21 years ago*** empty log message *** nettle_1.10_release_20040305
Niels Möller [Fri, 5 Mar 2004 20:30:23 +0000 (21:30 +0100)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.264

21 years ago(SHLIBMINOR): Shared library version is now 2.2.
Niels Möller [Fri, 5 Mar 2004 19:06:00 +0000 (20:06 +0100)] 
(SHLIBMINOR): Shared library version is now 2.2.

Rev: src/nettle/configure.ac:1.39

21 years ago*** empty log message ***
Niels Möller [Fri, 5 Mar 2004 19:05:48 +0000 (20:05 +0100)] 
*** empty log message ***

Rev: src/nettle/NEWS:1.16

21 years ago*** empty log message ***
Niels Möller [Thu, 4 Mar 2004 21:44:42 +0000 (22:44 +0100)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.263

21 years agoPass -g flag to nm.
Niels Möller [Thu, 4 Mar 2004 21:44:36 +0000 (22:44 +0100)] 
Pass -g flag to nm.

Rev: src/nettle/testsuite/symbols-test:1.5

21 years agoFixed EXEEXT workaround.
Niels Möller [Tue, 2 Mar 2004 20:56:49 +0000 (21:56 +0100)] 
Fixed EXEEXT workaround.

Rev: src/nettle/ChangeLog:1.262
Rev: src/nettle/configure.ac:1.38

21 years agoTypo fix.
Niels Möller [Tue, 2 Mar 2004 19:31:18 +0000 (20:31 +0100)] 
Typo fix.

Rev: src/nettle/configure.ac:1.37

21 years agoAdded workaround to get the correct $(EXEEXT)=''
Niels Möller [Tue, 2 Mar 2004 16:20:42 +0000 (17:20 +0100)] 
Added workaround to get the correct $(EXEEXT)=''
when compiling with rntcl.

Rev: src/nettle/ChangeLog:1.261
Rev: src/nettle/configure.ac:1.36

21 years ago*** empty log message ***
Niels Möller [Tue, 2 Mar 2004 09:32:16 +0000 (10:32 +0100)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.260

21 years ago(noinst_PROGRAMS): Put test program list
Niels Möller [Tue, 2 Mar 2004 09:31:05 +0000 (10:31 +0100)] 
(noinst_PROGRAMS): Put test program list
here, to let automake add $(EXEEXT).

Rev: src/nettle/testsuite/Makefile.am:1.40

21 years ago(RSA_EXAMPLES): Append $(EXEEXT) to the filenames.
Niels Möller [Tue, 2 Mar 2004 08:30:21 +0000 (09:30 +0100)] 
(RSA_EXAMPLES): Append $(EXEEXT) to the filenames.

Rev: src/nettle/ChangeLog:1.259
Rev: src/nettle/configure.ac:1.35

21 years ago*** empty log message ***
Niels Möller [Mon, 1 Mar 2004 20:34:57 +0000 (21:34 +0100)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.258

21 years agoInclude "getopt.h" instead of <unistd.h>.
Niels Möller [Mon, 1 Mar 2004 20:34:09 +0000 (21:34 +0100)] 
Include "getopt.h" instead of <unistd.h>.

Rev: src/nettle/examples/rsa-decrypt.c:1.5
Rev: src/nettle/examples/rsa-encrypt.c:1.6
Rev: src/nettle/examples/rsa-keygen.c:1.13

21 years ago(rsa_encrypt_SOURCES, rsa_decrypt_SOURCES)
Niels Möller [Mon, 1 Mar 2004 20:33:07 +0000 (21:33 +0100)] 
(rsa_encrypt_SOURCES, rsa_decrypt_SOURCES)
(rsa_keygen_SOURCES): Added getopt.h, getopt.c and getopt1.c.

Rev: src/nettle/examples/Makefile.am:1.21

21 years agoNew files.
Niels Möller [Mon, 1 Mar 2004 20:32:01 +0000 (21:32 +0100)] 
New files.

Rev: src/nettle/examples/getopt.c:1.1
Rev: src/nettle/examples/getopt.h:1.1
Rev: src/nettle/examples/getopt1.c:1.1

21 years ago*** empty log message ***
Niels Möller [Mon, 1 Mar 2004 20:21:04 +0000 (21:21 +0100)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.257

21 years ago* testsuite/des-compat-test.c: Don't include <unistd.h>.
Niels Möller [Mon, 1 Mar 2004 20:20:57 +0000 (21:20 +0100)] 
* testsuite/des-compat-test.c: Don't include <unistd.h>.

* testsuite/testutils.c (main): Don't use getopt. Then we don't
need to include <unistd.h>.

Rev: src/nettle/testsuite/des-compat-test.c:1.6
Rev: src/nettle/testsuite/testutils.c:1.26

21 years ago*** empty log message ***
Niels Möller [Mon, 1 Mar 2004 15:50:05 +0000 (16:50 +0100)] 
*** empty log message ***

Rev: src/nettle/ChangeLog:1.256