aboutsummaryrefslogtreecommitdiffstats
path: root/common/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Generate the ChangeLog from commit logs.Werner Koch2011-12-011-2483/+0
| | | | | | | | | | | | | * scripts/gitlog-to-changelog: New script. Taken from gnulib. * scripts/git-log-fix: New file. * scripts/git-log-footer: New file. * doc/HACKING: Describe the ChangeLog policy * ChangeLog: New file. * Makefile.am (EXTRA_DIST): Add new files. (gen-ChangeLog): New. (dist-hook): Run gen-ChangeLog. Rename all ChangeLog files to ChangeLog-2011.
* Rewrite dns-cert.c to not use the gpg-only iobuf stuff.Werner Koch2011-11-301-0/+15
| | | | | | | | | | | | | * common/dns-cert.c: Remove iobuf.h. (get_dns_cert): Rename to _get_dns_cert. Remove MAX_SIZE arg. Change iobuf arg to a estream-t. Rewrite function to make use of estream instead of iobuf. Require all parameters. Return an gpg_error_t error instead of the type. Add arg ERRSOURCE. * common/dns-cert.h (get_dns_cert): New macro to pass the error source to _gpg_dns_cert. * common/t-dns-cert.c (main): Adjust for changes in get_dns_cert. * g10/keyserver.c (keyserver_import_cert): Ditto. * doc/gpg.texi (GPG Configuration Options): Remove max-cert-size.
* Add parameter checks and extend documentation of estream.Werner Koch2011-11-301-0/+4
| | | | | * estream.c (func_mem_create): Don't set FUNC_REALLOC if GROW is not set. Require FUNC_REALLOC if DATA is NULL and FUNC_FREE is given.
* dns-cert.c: Use constants for better readability.Werner Koch2011-11-301-0/+4
|
* Increase the default buffer size for DNS certificates.Werner Koch2011-11-301-0/+2
| | | | | * common/t-dns-cert.c (main): Increase MAX_SIZE to 64k. * g10/keyserver.c (DEFAULT_MAX_CERT_SIZE): Increase from 16k to 64k.
* Use separate test module for dns-cert.c.Werner Koch2011-11-301-0/+5
| | | | | * dns-cert.c (get_dns_cert): Factor test code out to ... * t-dns-cert.c: new file.
* Allow distribution of dotlock.* also under a modified BSD licenseWerner Koch2011-10-241-0/+5
|
* Change JNLIB license to LGPLv3+ or GPLv2+.Werner Koch2011-09-301-0/+3
| | | | This is to allow the use of this code with code under GPLv2(only).
* Add prefix macro for dotlock functions.Werner Koch2011-09-301-0/+4
| | | | Also fixed a type in the GLIB version.
* Add dotlock_get_fd and dotlock_set_fd.Werner Koch2011-09-291-0/+1
|
* Make dotlock.c thread-safe on pthread systems.Werner Koch2011-09-291-0/+7
| | | | This is achieved by passing the define DOTLOCK_USE_PTHREAD.
* Add a flag parameter to dotlock_create.Werner Koch2011-09-281-0/+1
| | | | This allows us to extend this function in the future.
* Allow arbitrary timeouts with dotlock.Werner Koch2011-09-281-0/+5
|
* Improved the dotlock module.Werner Koch2011-09-271-0/+8
| | | | | | | - It is now more portable and may be used outside of GnuPG - vfat file systems are now supported. - The use of link(2) is more robust. - Wrote extensive documentation.
* Renamed the lock functions.Werner Koch2011-09-231-1/+15
| | | | Also cleaned up the dotlock code for easier readability.
* Fixed set but unused variable bugsWerner Koch2011-08-101-0/+10
|
* New functions to compute an ssh style fingerprint.Werner Koch2011-07-201-0/+7
|
* Fix size_t vs int issues.Marcus Brinkmann2011-06-011-0/+4
|
* Require libgpg-error 1.10Werner Koch2011-05-201-0/+4
| | | | | This allows to remove some error code substitutes. Fixed a typo in gpg.text.
* Fix regression in gpg's mail address parsing.Werner Koch2011-04-251-0/+5
| | | | | | Since 2009-12-08 gpg was not able to find email addresses indicated by a leading '<'. This happened when I merged the user id classification code of gpgsm and gpg.
* Add code for explicit selection of pooled A records.Werner Koch2011-04-121-0/+4
| | | | | | | | | | | To better cope with round robin pooled A records like keys.gnupg.net we need to keep some information on unresponsive hosts etc. What we do now is to resolve the hostnames, remember them and select a random one. If a host is dead it will be marked and a different one selected. This is intended to solve the problem of long timeouts due to unresponsive hosts. The code is not yet finished but selection works.
* Simplify the management of the stream list in estream.cWerner Koch2011-03-031-0/+11
|
* Add new functions to convert iso time strings.Werner Koch2011-03-011-0/+8
|
* Fix ChnageLog entries.Werner Koch2011-02-151-0/+5
|
* Add finger support to dirmngr.Werner Koch2011-02-081-0/+22
| | | | | | | | | | | | | The basic network code from http.c is used for finger. This keeps the network related code at one place and we are able to use the somewhat matured code form http.c. Unfortunately I had to enhance the http code for more robustness and probably introduced new bugs. Test this code using gpg --fetch-key finger:[email protected] (I might be the last user of finger ;-)
* Add a DECRYPTION_INFO status.Werner Koch2011-02-031-0/+2
| | | | | | | DECRYPTION_INFO <mdc_method> <sym_algo> Print information about the symmetric encryption algorithm and the MDC method. This will be emitted even if the decryption fails.
* Update copyright yearWerner Koch2011-02-031-0/+4
| | | | Nuked some trailing spaces.
* Finished ECC integration.ECC-INTEGRATION-2-1Werner Koch2011-02-031-2/+0
| | | | | | | | | | | | Wrote the ChangeLog 2011-01-13 entry for Andrey's orginal work modulo the cleanups I did in the last week. Adjusted my own ChangeLog entries to be consistent with that entry. Nuked quite some trailing spaces; again sorry for that, I will better take care of not saving them in the future. "git diff -b" is useful to read the actual changes ;-). The ECC-INTEGRATION-2-1 branch can be closed now.
* Move OpenPGP OID helpers to common/.Werner Koch2011-01-311-0/+7
| | | | | | | This is needed so that the agent will be able to export and import OpenPGP secret keys. Add test case. Removed unused function.
* Fix ECDH configure testWerner Koch2011-01-241-5/+0
|
* Merge branch 'master' into ECC-INTEGRATION-2-1Werner Koch2011-01-241-0/+52
|\
| * Fix for bug#1313. de.po update.Werner Koch2011-01-201-0/+11
| |
| * Merge branch 'master' into keyserver-via-dirmngrWerner Koch2011-01-201-2/+7
| |\
| | * Use estream for dirmngr's --gpgconf-list.Werner Koch2011-01-191-1/+6
| | | | | | | | | | | | Change insalled name of gpg2 for Wince.
| | * Fix computation of NEWSIZE in es_func_mem_write.Werner Koch2011-01-181-0/+4
| | | | | | | | | | | | The function used to fail and return EINVAL when enlarging the buffer.
| | * Fix bug #1311.Werner Koch2011-01-101-0/+5
| | |
| * | All standard keyserver commands are now using dirmngr.Werner Koch2011-01-201-0/+11
| | |
| * | estream support for iobuf and new memuf functions.Werner Koch2011-01-181-2/+15
| | |
| * | Initial code checking for backup - not yet working.Werner Koch2011-01-101-1/+13
| |/
* / Fix bug #1311.Werner Koch2011-01-101-0/+5
|/
* Increase start timeoutWerner Koch2010-12-171-1/+8
|
* 2010-12-17 Marcus Brinkmann <[email protected]>Marcus Brinkmann2010-12-171-0/+4
| | | | | * homedir.c (gnupg_cachedir): Create /temp subdirectories.
* s/AES/AES128/ in diagnostics and --list-configWerner Koch2010-12-021-0/+3
|
* Add logging to GPG2: [W32CE].Werner Koch2010-12-021-0/+6
|
* Remove superfluous parameter.Werner Koch2010-11-261-0/+5
| | | | | Make self-check interval larger
* Change stack size for Wince.Werner Koch2010-11-231-0/+7
| | | | | | Allow for a longer agent atartup under wince. Print gpg output via estream.
* A merged changesWerner Koch2010-11-081-0/+5
|
* Better support unsigned time_tWerner Koch2010-10-271-0/+8
|
* Re-implemented GPG's --passwd command and improved it.Werner Koch2010-10-261-0/+4
|
* Enable i18n for W32.Werner Koch2010-10-201-0/+4
|