summaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Fix handling of unrecognized options for nettle-hash and nettle-pbkdf2.Niels Möller2016-01-262-9/+21
|
* Deleted useless for loopNiels Möller2014-04-161-34/+33
|
* Update copyright headers for dual licensing, tools directory.Niels Möller2014-04-1213-280/+394
|
* Fixes for make dist.Niels Möller2014-04-111-1/+1
|
* Delete old .cvsignore files.Niels Möller2014-03-291-5/+0
|
* Convert DER decoding functions to new DSA interface.Niels Möller2014-03-261-18/+22
|
* Convert dsa_keypair_to_sexp to use struct dsa_params.Niels Möller2014-03-261-2/+6
|
* nettle-pbkdf2: Added missing deallocation.Niels Möller2014-02-131-0/+2
|
* Fixed link dependency problems with --disable-static.Niels Möller2013-09-181-5/+5
|
* Ignore nettle-pbkdf2 executable.Niels Möller2013-09-031-0/+1
|
* Typo fix, spotted by Bruce Korb.Niels Möller2013-09-031-1/+1
|
* New program nettle-pbkdf2.Niels Möller2013-06-252-2/+188
|
* nettle-hash.c: Use stack allocation for the small hex output buffer.Niels Möller2013-06-251-2/+1
|
* Use size_t rather than unsigned for base16, base64, nettle_bufer and sexp ↵Niels Möller2013-04-262-17/+17
| | | | related functions.
* Fixed make rules for building objects in parent directory.Niels Möller2013-01-021-2/+6
|
* Fixed memory leak in pkcs1-conv.Niels Möller2012-09-161-1/+5
|
* Improved use of gcc __attribute__.Niels Möller2012-09-071-11/+2
|
* Updated FSF address. Patch from David Woodhouse.Niels Möller2012-07-0712-24/+24
|
* Updated .gitignore files.Niels Möller2012-02-181-0/+1
|
* Adjust Makefiles after the repository conversion.Niels Möller2012-02-181-8/+11
|
* Converted files to utf-8.Niels Möller2012-02-1811-12/+12
|
* * tools/nettle-lfib-stream.c: Include config.h.Niels Möller2011-09-031-0/+4
| | | | Rev: nettle/tools/nettle-lfib-stream.c:1.2
* (list_algorithms): Fixed typo in header.Niels Möller2011-08-291-1/+1
| | | | Rev: nettle/tools/nettle-hash.c:1.3
* (werror): Removed incorrect noreturn attribute from declaration.Niels Möller2011-07-071-1/+0
| | | | Rev: nettle/tools/misc.h:1.4
* (find_algorithm): Require exact match.Niels Möller2011-04-271-21/+7
| | | | Rev: nettle/tools/nettle-hash.c:1.2
* (xalloc): Deleted function, now it's in misc.c instead.Niels Möller2011-03-231-13/+0
| | | | Rev: nettle/tools/sexp-conv.c:1.6
* * tools/Makefile.in (TARGETS): Added nettle-hash, and relatedNiels Möller2011-03-232-2/+255
| | | | | | | | | | build rules. (SOURCES): Added nettle-hash.c. * tools/nettle-hash.c: New file. Rev: nettle/tools/Makefile.in:1.5 Rev: nettle/tools/nettle-hash.c:1.1
* (xalloc): New function.Niels Möller2011-03-232-0/+16
| | | | | Rev: nettle/tools/misc.c:1.3 Rev: nettle/tools/misc.h:1.3
* (main): Made the OPT_* constants local, andNiels Möller2011-03-231-8/+8
| | | | | | fixed numerical values to start with non-ASCII 0x300. Rev: nettle/tools/pkcs1-conv.c:1.5
* (werror): Don't call exit (copy&paste-error).Niels Möller2010-11-011-2/+0
| | | | Rev: nettle/tools/misc.c:1.2
* * tools/pkcs1-conv.c (main): Deleted short alias -? for --help,Niels Möller2010-10-222-16/+30
| | | | | | | | and fixed handling of bad options. * tools/sexp-conv.c (parse_options): Likewise. Rev: nettle/tools/pkcs1-conv.c:1.4 Rev: nettle/tools/sexp-conv.c:1.5
* (pkcs1-conv$(EXEEXT)): Added dependency on ../libhogweed.a.Niels Möller2009-10-211-1/+1
| | | | Rev: nettle/tools/Makefile.in:1.4
* * tools/pkcs1-conv.c: Updated for dsa/der interface change.Niels Möller2009-10-191-3/+4
| | | | | | | | | | | | | | | | * der2dsa.c (dsa_public_key_from_der_iterators): Split into two new functions... (dsa_params_from_der_iterator): New function. (dsa_public_key_from_der_iterator): New function. (dsa_openssl_private_key_from_der_iterator): Renamed, was dsa_private_key_from_der_iterator. (dsa_openssl_private_key_from_der): Likewise. * dsa.h: Corresponding changees to prototypes and #defines. Rev: nettle/ChangeLog:1.45 Rev: nettle/der2dsa.c:1.3 Rev: nettle/dsa.h:1.3 Rev: nettle/tools/pkcs1-conv.c:1.3
* Support for DSA keys, contributed by Magnus Holmgren.Magnus Holmgren2009-10-121-6/+78
| | | | Rev: nettle/tools/pkcs1-conv.c:1.2
* * testsuite/sexp-conv-test: Updated testcases for improvedNiels Möller2009-02-103-23/+56
| | | | | | | | | | | | | | | | | | | | | | handling of comments. * tools/sexp-conv.c (sexp_convert_item): Use sexp_put_soft_newline to terminate comments, and modify indentation for the case that a list starts with a comment. * tools/output.c (sexp_output_init): Initialize soft_newline. (sexp_put_raw_char): Clear soft_newline. (sexp_put_newline): Check and reset soft_newline. (sexp_put_soft_newline): New function. * tools/output.h (struct sexp_output): Removed union with single element, and updated all users. New attribute soft_newline. Rev: nettle/ChangeLog:1.31 Rev: nettle/testsuite/sexp-conv-test:1.3 Rev: nettle/tools/output.c:1.3 Rev: nettle/tools/output.h:1.3 Rev: nettle/tools/sexp-conv.c:1.4
* (main): Fixed file locking.Niels Möller2008-10-301-1/+6
| | | | Rev: nettle/tools/sexp-conv.c:1.3
* (sexp_convert_item): Keep comments in advancedNiels Möller2008-08-271-2/+43
| | | | | | | | output. (parse_options): New --lock option. (main): Optionally lock output file. Rev: nettle/tools/sexp-conv.c:1.2
* (sexp_check_token): Removed check for "any" token.Niels Möller2008-08-271-1/+5
| | | | | | | All callers specify the token they expect. (sexp_parse): Pass on comment tokens. Rev: nettle/tools/parse.c:1.2
* (sexp_put_data): Made non-static.Niels Möller2008-08-272-1/+5
| | | | | Rev: nettle/tools/output.c:1.2 Rev: nettle/tools/output.h:1.2
* (sexp_get_comment): New function.Niels Möller2008-08-271-10/+21
| | | | | | (sexp_get_token): Use sexp_get_comment. Rev: nettle/tools/input.c:1.2
* (enum sexp_token): Start enumeration with zero, zeroNiels Möller2008-08-271-3/+3
| | | | | | is no longer used to maen any type. New type SEXP_COMMENT. Rev: nettle/tools/misc.h:1.2
* * Makefile.in (tags-here): Put TAGS file in the source directory.Niels Möller2008-08-261-1/+1
| | | | | | | | | | | | * 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
* * tools/Makefile.in (pkcs1-conv): Use IF_HOGWEED, not @RSA_TOOLS@,Niels Möller2007-05-141-2/+4
| | | | | | for configuration. Link with -lhogweed. Rev: nettle/tools/Makefile.in:1.2
* * tools/Makefile.in (install): Use MKDIR_P to create installationNiels Möller2006-11-271-2/+5
| | | | | | directory. Install only one file at a time. Rev: src/nettle/tools/Makefile.in:1.18
* * Merged experimental branch. Also:after_experimental_merge_20060516Niels Möller2006-05-161-0/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * src/testsuite/server-config-test.c: New file (merged manually from experimental branch). * src/lshd.c (make_lshd_config): Initialize werror_config. (lshd_config_handler): Pass self->werror_config to child parser. (main): Merged new daemonic handling from main branch. * src/testsuite/functions.sh (spawn_lshd): Use --daemonic option. * Merged experimental branch. Also: Rev: src/nettle/ChangeLog:1.393 Rev: src/nettle/Makefile.in:1.34 Rev: src/nettle/examples/Makefile.in:1.14 Rev: src/nettle/testsuite/Makefile.in:1.23 Rev: src/nettle/tools/Makefile.in:1.17
| * * testsuite/Makefile.in (tags): New target.Niels Möller2006-02-141-0/+3
| | | | | | | | | | Rev: src/nettle/testsuite/Makefile.in:1.12.2.1 Rev: src/nettle/tools/Makefile.in:1.12.2.1
* | (read_pem): Fixed c99-style declaration.Henrik Grubbström (Grubba)2006-04-081-1/+3
| | | | | | | | | | | | Reported by Henrik Grubbström. Rev: src/nettle/tools/pkcs1-conv.c:1.2
* | * tools/Makefile.in (INSTALL): Substitute INSTALL, INSTALL_DATANiels Möller2005-11-281-0/+6
| | | | | | | | | | | | | | | | and friends here. * Makefile.in (INSTALL): Likewise. Rev: src/nettle/Makefile.in:1.33 Rev: src/nettle/tools/Makefile.in:1.16
* | * tools/Makefile.in (pkcs1_conv_SOURCES): New variable.Niels Möller2005-11-251-2/+4
| | | | | | | | | | | | (pkcs1-conv): Link with getopt.o and getopt1.o. Rev: src/nettle/tools/Makefile.in:1.15
* | Ignore pkcs1-conv binary.Niels Möller2005-11-232-0/+2
| | | | | | | | Rev: src/nettle/tools/.cvsignore:1.5