- Nov 19, 2011
-
-
* Makefile.in (IMPLICIT_TARGETS): New variable for DLL link libraries. (clean-here): Delete the DLL import libraries. Rev: nettle/ChangeLog:1.231 Rev: nettle/Makefile.in:1.42
-
* configure.ac: Setup installation of dll files in $bindir. (IF_DLL, LIBNETTLE_FILE_SRC, LIBHOGWEED_FILE_SRC): New substitutions. * config.make.in (LIBNETTLE_FILE_SRC): Substitute new autoconf variable. (LIBHOGWEED_FILE_SRC): Likewise. * Makefile.in (install-dll-nettle, uninstall-dll-nettle): New target for installing the dll file in $bindir. (install-shared-nettle): Conditionally depend on install-dll-nettle. Use LIBNETTLE_FILE_SRC. (uninstall-shared-nettle): Conditionally depend on install-dll-nettle. (various hogweed targets): Analogous changes. Rev: nettle/ChangeLog:1.230 Rev: nettle/Makefile.in:1.41 Rev: nettle/config.make.in:1.4 Rev: nettle/configure.ac:1.47
-
- Aug 30, 2011
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.40
-
- Aug 28, 2011
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.39
-
ripemd160-compress.c ripemd160-meta.c. (HEADERS): Added ripemd160.h. Rev: nettle/Makefile.in:1.38
-
- Jul 24, 2011
-
-
Niels Möller authored
(DISTFILES): Added nettle.pc.in and hogweed.pc.in. (nettle.pc, hogweed.pc): New targets (invoking config.status). (install-pkgconfig, uninstall-pkgconfig): New targets. (install-here): Depend on install-pkgconfig. (uninstall-here): Depend on uninstall-pkgconfig. (distclean-here): Delete nettle.pc and hogweed.pc. Rev: nettle/ChangeLog:1.209 Rev: nettle/Makefile.in:1.37
-
- Jul 11, 2011
-
-
Niels Möller authored
Rev: nettle/ChangeLog:1.205 Rev: nettle/Makefile.in:1.36
-
- Jul 07, 2011
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.35
-
- Jun 06, 2011
-
-
Niels Möller authored
(nettle_SOURCES): Replaced serpent.c by serpent-set-key.c, serpent-encrypt.c, and serpent-decrypt.c. * serpent.c: Replaced by several new files. * serpent-set-key.c: New file. * serpent-encrypt.c: New file. * serpent-decrypt.c: New file. * serpent-internal.h: New file. Rev: nettle/ChangeLog:1.176 Rev: nettle/Makefile.in:1.34 Rev: nettle/serpent-decrypt.c:1.1 Rev: nettle/serpent-encrypt.c:1.1 Rev: nettle/serpent-internal.h:1.1 Rev: nettle/serpent-set-key.c:1.1 Rev: nettle/serpent.c:1.9(DEAD)
-
- May 31, 2011
-
-
Rev: nettle/ChangeLog:1.170 Rev: nettle/Makefile.in:1.33 Rev: nettle/serpent.c:1.4 Rev: nettle/serpent_sboxes.h:1.2(DEAD)
-
- Mar 23, 2011
-
-
* testsuite/Makefile.in (TS_NETTLE_SOURCES): Added meta-hash-test.c, meta-cipher-test.c, and meta-armor-test.c. * nettle.texinfo: Document nettle_hashes and nettle_ciphers. * nettle-meta.h: Declare algorithm lists nettle_ciphers, nettle_hashes, nettle_armors. * Makefile.in (nettle_SOURCES): Added nettle-meta-hashes.c, nettle-meta-ciphers.c, and nettle-meta-armors.c. * nettle-meta-armors.c: New file. * nettle-meta-ciphers.c: New file. * nettle-meta-hashes.c: New file. Rev: nettle/ChangeLog:1.159 Rev: nettle/Makefile.in:1.32 Rev: nettle/nettle-meta-armors.c:1.1 Rev: nettle/nettle-meta-ciphers.c:1.1 Rev: nettle/nettle-meta-hashes.c:1.1 Rev: nettle/nettle-meta.h:1.10 Rev: nettle/nettle.texinfo:1.22
-
- Feb 09, 2011
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.31
-
- Feb 07, 2011
-
-
Niels Möller authored
Rev: nettle/ChangeLog:1.134 Rev: nettle/Makefile.in:1.30
-
- Feb 06, 2011
-
-
Niels Möller authored
(gcmdata): New rule. Rev: nettle/Makefile.in:1.29
-
- Feb 05, 2011
-
-
Niels Möller authored
(HEADERS): Added gcm.h. Rev: nettle/Makefile.in:1.28
-
- Nov 25, 2010
-
-
Niels Möller authored
clears the execute permission bits. (install-shared-hogweed): Likewise. Rev: nettle/ChangeLog:1.121 Rev: nettle/Makefile.in:1.27
-
- Jul 24, 2010
-
-
Niels Möller authored
unmodified subkeys according to the spec. Moved clever combination of subkeys to camellia_set_encrypt_key. (camellia_setup256): Likewise. (camellia_set_encrypt_key): Moved subkey post-processing code here, and reduce code duplication between 128-bit keys and larger keys. * camellia.c: Deleted file, split into several new files... * camellia-table.c (_camellia_table): New file with the constant sbox tables. * camellia-set-encrypt-key.c: New file. (camellia_setup128): Generate unmodified subkeys according to the spec. Moved clever combination of subkeys to camellia_set_encrypt_key. (camellia_setup256): Likewise. * camellia-set-decrypt-key.c: New file. (camellia_invert_key): Key inversion function. (camellia_set_decrypt_key): New key setup function. * camellia-internal.h: New file. * camellia-crypt.c (camellia_crypt): New file, new wrapper function passing the sbox table to _camellia_crypt. * camellia-crypt-internal.c (_camellia_crypt): New file, with main encrypt/decrypt function. * Makefile.in (nettle_SOURCES): Updated list of camellia source files. (DISTFILES): Added camellia-internal.h. Rev: nettle/ChangeLog:1.96 Rev: nettle/Makefile.in:1.26 Rev: nettle/camellia-crypt-internal.c:1.1 Rev: nettle/camellia-crypt.c:1.1 Rev: nettle/camellia-internal.h:1.1 Rev: nettle/camellia-set-decrypt-key.c:1.1 Rev: nettle/camellia-set-encrypt-key.c:1.1 Rev: nettle/camellia-table.c:1.1 Rev: nettle/camellia.c:1.5(DEAD)
-
- Jul 07, 2010
-
-
Niels Möller authored
camellia-meta.c. (HEADERS): Added camellia.h. * camellia-meta.c: New file. * camellia.h: Rewrote interface to match nettle conventions. * camellia.c: Converted to nettle conventions. (camellia_encrypt128, camellia_encrypt256): Unified to new function... (camellia_encrypt): ...New function, with a loop doing 6 regular rounds, one FL round and one FLINV round per iteration, with iteration count depending on the key size. Rev: nettle/ChangeLog:1.89 Rev: nettle/Makefile.in:1.25 Rev: nettle/camellia-meta.c:1.1 Rev: nettle/camellia.c:1.2 Rev: nettle/camellia.h:1.2
-
- Jul 05, 2010
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.24
-
- Apr 09, 2010
-
-
Niels Möller authored
* bignum-random-prime.c (nettle_random_prime): New file, new function. Rev: nettle/ChangeLog:1.75 Rev: nettle/Makefile.in:1.23 Rev: nettle/bignum-random-prime.c:1.1 Rev: nettle/bignum.h:1.4
-
- Mar 30, 2010
-
-
Niels Möller authored
dsa-sha1-verify.c, dsa-sha256-sign.c, and dsa-sha256-verify.c. * dsa.h: Updated and added dsa declarations. * dsa-sha256-verify.c (dsa_sha256_verify_digest): New file, new function. (dsa_sha256_verify): New function. * dsa-sha256-sign.c (dsa_sha256_sign_digest): New file, new function. (dsa_sha256_sign): New function. * dsa-sha1-verify.c (dsa_sha1_verify_digest): New file. Moved and renamed function, from dsa_verify_digest, rewrote to use _dsa_verify. (dsa_sha1_verify): Analogous change, renamed from dsa_verify. * dsa-sha1-sign.c (dsa_sha1_sign_digest): New file. Moved and renamed function, from dsa_sign_digest, rewrote to use _dsa_sign, and added return value. (dsa_sha1_sign): Analogous change, renamed from dsa_sign. * dsa-verify.c (_dsa_verify): New general verification function, for any hash. * dsa-sign.c (_dsa_sign): New general signing function, for any hash. Returns success code, like the rsa signture functions. Rev: nettle/ChangeLog:1.71 Rev: nettle/Makefile.in:1.22 Rev: nettle/dsa-sha1-sign.c:1.1 Rev: nettle/dsa-sha1-verify.c:1.1 Rev: nettle/dsa-sha256-sign.c:1.1 Rev: nettle/dsa-sha256-verify.c:1.1 Rev: nettle/dsa-sign.c:1.3 Rev: nettle/dsa-verify.c:1.3 Rev: nettle/dsa.h:1.4
-
- Mar 27, 2010
-
-
Niels Möller authored
* hmac.h: Added declarations of hmac-sha224 and hmac-sha384. * hmac-sha224.c: New file. Rev: nettle/ChangeLog:1.65 Rev: nettle/Makefile.in:1.21 Rev: nettle/hmac-sha224.c:1.1 Rev: nettle/hmac.h:1.4
-
- Mar 26, 2010
-
-
Niels Möller authored
(DISTFILES): Added nettle-write.h. Rev: nettle/Makefile.in:1.20
-
- Mar 25, 2010
-
-
Niels Möller authored
* sha384-meta.c: New file. * sha.h: Added declarations for sha384. Some are aliases for the corresponding sha512 definition. * sha512.c (sha512_write_digest): New function. (sha512_digest): Use it. (sha384_init): New function. (sha384_digest): New function. Rev: nettle/ChangeLog:1.59 Rev: nettle/Makefile.in:1.19 Rev: nettle/nettle-meta.h:1.4 Rev: nettle/sha.h:1.5 Rev: nettle/sha384-meta.c:1.1 Rev: nettle/sha512.c:1.4
-
- Mar 24, 2010
-
-
Niels Möller authored
* sha512-compress.c (_nettle_sha512_compress): Compression function extracted from sha512.c to a new file. * Makefile.in (nettle_SOURCES): Added sha256-compress.c and sha512-compress.c. Rev: nettle/ChangeLog:1.57 Rev: nettle/Makefile.in:1.18 Rev: nettle/sha.h:1.4 Rev: nettle/sha512-compress.c:1.1 Rev: nettle/sha512.c:1.2
-
Niels Möller authored
* sha256.c: Reorganized to use _nettle_sha256_compress. * sha256-compress.c (_nettle_sha256_compress): Compression function extracted from sha256.c to a new file. Rev: nettle/ChangeLog:1.56 Rev: nettle/Makefile.in:1.17 Rev: nettle/sha.h:1.3 Rev: nettle/sha256-compress.c:1.1 Rev: nettle/sha256.c:1.4
-
- Mar 23, 2010
-
-
Niels Möller authored
rsa-sha512-sign.c and rsa-sha512-verify.c. * rsa.h: Added prototypes for sha512-related functions. (RSA_MINIMUM_N_OCTETS, RSA_MINIMUM_N_BITS): Increased. * pkcs1.h: Added prototypes for sha512-related functions. * rsa-sha512-verify.c: New file. * rsa-sha512-sign.c: New file. * pkcs1-rsa-sha512.c: New file. Rev: nettle/ChangeLog:1.52 Rev: nettle/Makefile.in:1.16 Rev: nettle/pkcs1-rsa-sha512.c:1.1 Rev: nettle/pkcs1.h:1.2 Rev: nettle/rsa-sha512-sign.c:1.1 Rev: nettle/rsa-sha512-verify.c:1.1 Rev: nettle/rsa.h:1.3
-
- Mar 22, 2010
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.15
-
Niels Möller authored
* sha.h: Added SHA-512-related declarations. * nettle-meta.h: Likewise. * sha512-meta.c: New file. * sha512.c: New file. Rev: nettle/Makefile.in:1.14 Rev: nettle/nettle-meta.h:1.3 Rev: nettle/sha.h:1.2 Rev: nettle/sha512-meta.c:1.1 Rev: nettle/sha512.c:1.1
-
- Mar 06, 2010
-
-
Niels Möller authored
Rev: nettle/ChangeLog:1.49 Rev: nettle/Makefile.in:1.13
-
- Jan 13, 2010
-
-
Niels Möller authored
$(LIBNETTLE_FORLINK). * configure.ac (LIBHOGWEED_LIBS): Added -lnettle -lgmp for the default case. Follows debian, and also makes dlopen of libhogweed.so work, without having to use RTLD_GLOBAL. (LIBHOGWEED_LINK): Added -L., to find our libnettle.so. Rev: nettle/ChangeLog:1.47 Rev: nettle/Makefile.in:1.12 Rev: nettle/configure.ac:1.12
-
- Oct 12, 2009
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.11
-
- Aug 25, 2009
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.10
-
- May 30, 2009
-
-
Niels Möller authored
$@T, trust makeinfo to not remove output file on errors. Rev: nettle/Makefile.in:1.9
-
- Dec 22, 2008
-
-
Niels Möller authored
Rev: nettle/ChangeLog:1.30 Rev: nettle/Makefile.in:1.8
-
- Sep 08, 2008
-
-
Niels Möller authored
Rev: nettle/ChangeLog:1.15 Rev: nettle/Makefile.in:1.7
-
- Aug 26, 2008
-
-
Niels Möller authored
* examples/Makefile.in (tags): Likewise. * testsuite/Makefile.in (tags): Likewise. * tools/Makefile.in (tags): Likewise. Rev: nettle/ChangeLog:1.10 Rev: nettle/Makefile.in:1.6 Rev: nettle/examples/Makefile.in:1.5 Rev: nettle/testsuite/Makefile.in:1.3 Rev: nettle/tools/Makefile.in:1.3
-
- Jan 05, 2008
-
-
Niels Möller authored
(DISTFILES): Added prime-list.h. (hogweed_OBJS): Removed $(LIBOBJS). Rev: nettle/Makefile.in:1.5
-
- Jun 02, 2007
-
-
Rev: nettle/Makefile.in:1.4
-
- May 14, 2007
-
-
Niels Möller authored
Rev: nettle/Makefile.in:1.3
-