Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removed directories which are only used by the 1.9 branch | Werner Koch | 2005-07-27 | 100 | -37406/+0 |
| | |||||
* | Add a note that CVS is beeing migrated to Subversion | Werner Koch | 2005-07-27 | 1 | -0/+4 |
| | |||||
* | First commit to Subversion. | Werner Koch | 2005-07-27 | 3 | -7/+11 |
| | |||||
* | * keyserver.c (keyserver_typemap): Special-case LDAP since curl will | David Shaw | 2005-07-27 | 2 | -1/+8 |
| | | | | | report that it can handle it, and we don't want it to. | ||||
* | * NEWS, configure.ac: Switch over to using curl or fake-curl by | David Shaw | 2005-07-27 | 3 | -48/+24 |
| | | | | | default. Add --enable-old-keyserver-helpers to not use curl. | ||||
* | post release version number updates | Werner Koch | 2005-07-26 | 2 | -1/+5 |
| | |||||
* | Updated. | Werner Koch | 2005-07-26 | 1 | -20/+37 |
| | |||||
* | * passphrase.c (agent_get_passphrase): Make sure to release the | Werner Koch | 2005-07-26 | 32 | -14084/+13343 |
| | | | | | | | | | saved codeset. (agent_open): Add arg ORIG_CODESET and switch back to it in case of error. Changed all callers. * zh_TW.po, fr.po, cs.po: Updated. | ||||
* | Preparing a release | Werner Koch | 2005-07-26 | 5 | -17/+12 |
| | |||||
* | * keyedit.c (sign_uids): Don't prompt for setting signature expiry to | David Shaw | 2005-07-22 | 2 | -17/+25 |
| | | | | | | match key expiry unless --ask-cert-expire is set. Suggested by Peter Palfrader. | ||||
* | *** empty log message *** | Werner Koch | 2005-07-22 | 1 | -0/+4 |
| | |||||
* | * gpg.sgml (http): | Werner Koch | 2005-07-22 | 15 | -39/+93 |
| | | | | | | * g10.c, options.h: New option --exit-on-status-write-error. * status.c (write_status_text): Make use of this option. | ||||
* | * options.h, g10.c (main), keyedit.c (keyedit_menu): Use --interactive | David Shaw | 2005-07-22 | 5 | -10/+15 |
| | | | | | | | | | to enable the uid walking when signing a key with no uids specified to sign. * keylist.c (list_keyblock_print): Fix silly typo. Noted by Greg Sabino Mullane. | ||||
* | * gpgkeys_curl.c (get_key, main): Don't try and be smart about what | David Shaw | 2005-07-20 | 6 | -31/+37 |
| | | | | | | | | | | | protocols we handle. Directly pass them to curl or fake-curl and see if an error comes back. * curl-shim.h, curl-shim.c (handle_error), ksutil.c (curl_err_to_gpg_err): Add support for CURLE_UNSUPPORTED_PROTOCOL in fake curl. * Makefile.am: Don't need -DFAKE_CURL any longer since it's in config.h. | ||||
* | * keyserver.c (curl_can_handle): New. Do a runtime check against libcurl | David Shaw | 2005-07-20 | 3 | -16/+43 |
| | | | | | | | | to see if it can handle a particular protocol. (keyserver_typemap): Call it here. * Makefile.am: Pull in libcurl for curl_version_info() if used. | ||||
* | * configure.ac: Add a define for FAKE_CURL. | David Shaw | 2005-07-20 | 2 | -0/+5 |
| | |||||
* | CURLINFO_NOW -> CURLVERSION_NOW | David Shaw | 2005-07-20 | 1 | -1/+1 |
| | |||||
* | Typo. | David Shaw | 2005-07-20 | 1 | -1/+1 |
| | |||||
* | * libcurl.m4: Check that our libcurl has curl_version_info(CURLINFO_NOW). | David Shaw | 2005-07-20 | 2 | -2/+9 |
| | |||||
* | Document --limit-card-insert-tries. | Werner Koch | 2005-07-19 | 3 | -2/+18 |
| | |||||
* | * g10.c, options.h: New option --limit-card-insert-tries. | Werner Koch | 2005-07-19 | 4 | -2/+18 |
| | | | | | * cardglue.c (open_card): Use it. | ||||
* | * configure.ac [W32]: Always set DISABLE_KEYSERVER_PATH. | Werner Koch | 2005-07-19 | 12 | -7/+132 |
| | | | | | | | | | | * export.c (parse_export_options): New option export-reset-subkey-passwd. (do_export_stream): Implement it. * misc.c (get_libexecdir): New. * keyserver.c (keyserver_spawn): Use it | ||||
* | * samplekeys.asc: Update 99242560. | David Shaw | 2005-07-19 | 3 | -1203/+1218 |
| | | | | | * gpg.sgml: Clarify --throw-keyid and --hidden-recipient a bit. | ||||
* | * tdbio.c (open_db): Check for EROFS. Suggested by Bryce Nichols. | Werner Koch | 2005-07-18 | 6 | -10/+26 |
| | | | | | | * ttyio.c (do_get): Move printing of the prompt after disabling echo. Suggested by Scott Worley. | ||||
* | * trustdb.c (clean_uids_from_key): Don't keep a valid selfsig around | David Shaw | 2005-07-09 | 5 | -22/+24 |
| | | | | | | | | | | | | | when compacting a uid. There is no reason to make an attacker's job easier - this way they only have a revocation which is useless in bringing the uid back. * keydb.h, kbnode.c (undelete_kbnode): Removed. No longer needed. * import.c (chk_self_sigs): Allow a uid revocation to be enough to allow importing a particular uid (no self sig needed). This allows importing compacted uids. | ||||
* | * gpgkeys_mailto.in, gpgkeys_test.in: Use @VERSION@ so version string | David Shaw | 2005-06-23 | 7 | -37/+66 |
| | | | | | | | | | | | | | | stays up to date. * gpgkeys_http.c: Don't need to define HTTP_PROXY_ENV here since it's in ksutil.h. * gpgkeys_curl.c (get_key, main), gpgkeys_hkp.c (main): Pass AUTH values to curl or curl-shim. * curl-shim.c (curl_easy_perform), gpgkeys_curl.c (main), gpgkeys_hkp.c (main): Use curl-style proxy semantics. | ||||
* | * curl-shim.h, curl-shim.c (curl_easy_setopt, curl_easy_perform): Add | David Shaw | 2005-06-23 | 3 | -2/+10 |
| | | | | | CURLOPT_USERPWD option for HTTP auth. | ||||
* | * gpgkeys_http.c (get_key), gpgkeys_oldhkp (send_key, get_key, | David Shaw | 2005-06-23 | 3 | -6/+14 |
| | | | | | | | search_key): No longer need to pass a proxyauth. * gpgkeys_http.c (get_key): Pass auth outside of the URL. | ||||
* | * http.h: Fix prototypes for http_open_document and http_open again, | David Shaw | 2005-06-23 | 2 | -7/+12 |
| | | | | | to handle the new different auth for regular files and proxies. | ||||
* | * http.c (make_radix64_string): Add '=' padding as per standard. | David Shaw | 2005-06-23 | 2 | -32/+53 |
| | | | | | | | (send_request, http_open, http_open_document): Clean up auth code. Can now support different auth for a proxy and the file being requested via that proxy. Unescape auth strings. | ||||
* | * memrchr.c (memrchr): Not all compilers allow initializing based on a | David Shaw | 2005-06-22 | 2 | -1/+9 |
| | | | | | variable that is also being initialized. Noted by Nelson H. F. Beebe. | ||||
* | * libcurl.m4: Only do the OS X linker fix on Panther. Tiger has a | David Shaw | 2005-06-22 | 2 | -3/+9 |
| | | | | | clean curl-config. | ||||
* | * gpgkeys_http.c (get_key), gpgkeys_oldhkp.c (send_key, get_key, | David Shaw | 2005-06-22 | 3 | -4/+11 |
| | | | | | | search_key): Fix http_open/http_open_document calls to pass NULL for auth and proxyauth since these programs pass them in the URL. | ||||
* | * http.h: Fix prototypes for http_open_document and http_open to pass | David Shaw | 2005-06-22 | 2 | -4/+11 |
| | | | | | in auth and proxyauth. | ||||
* | * http.c (send_request, http_open, http_open_document): Pass in auth | David Shaw | 2005-06-22 | 2 | -7/+17 |
| | | | | | and proxyauth that can override the in-url auth. | ||||
* | * http.c (send_request): Need == after the radix64-encoded basic auth | David Shaw | 2005-06-22 | 2 | -4/+9 |
| | | | | | string. | ||||
* | Post release version number update | Werner Koch | 2005-06-21 | 1 | -1/+1 |
| | |||||
* | * conventional.test (algos): Uhh ohh, cut+paste error and notRC-1-4-2rc2 | Werner Koch | 2005-06-21 | 2 | -2/+7 |
| | | | | | tested. | ||||
* | . | Werner Koch | 2005-06-21 | 1 | -27/+122 |
| | |||||
* | Preparing a release candidate | Werner Koch | 2005-06-21 | 29 | -11113/+11893 |
| | |||||
* | * gpgkeys_hkp.c (append_path, send_key, get_key, search_key, main), | David Shaw | 2005-06-21 | 3 | -11/+32 |
| | | | | | gpgkeys_oldhkp.c (main): Properly handle double slashes in paths. | ||||
* | * NEWS: Note key cleaning commands. | David Shaw | 2005-06-20 | 2 | -0/+13 |
| | |||||
* | * gpg.sgml: Document --edit-key/clean, import-clean, and export-clean. | David Shaw | 2005-06-20 | 2 | -0/+67 |
| | |||||
* | * keygen.c (save_unprotected_key_to_card): Better fix for gcc4 warning. | David Shaw | 2005-06-20 | 2 | -1/+6 |
| | |||||
* | * gpg.sgml: Document smartcard related options. | Werner Koch | 2005-06-20 | 13 | -51/+143 |
| | | | | | | * g10.c, options.h: New option --no-interactive-selection. * keyedit.c (keyedit_menu): Use it. | ||||
* | (parse_signature): Use log_info for messages | Werner Koch | 2005-06-18 | 6 | -5/+22 |
| | | | | | | | about missing timestamp or keyid. In case we don't use that key there won't be no further error and thus gpg does not need to return with an error. | ||||
* | * keygen.c (save_unprotected_key_to_card): Fix gcc4 warning. | David Shaw | 2005-06-14 | 5 | -8/+45 |
| | | | | | | | | | | * options.h, import.c (parse_import_options, import_one): Add import-clean-uids option to automatically compact unusable uids when importing. Like import-clean-sigs, this may nodify the local keyring. * trustdb.c (clean_uids_from_key): Only allow selfsigs to be a candidate for re-inclusion. | ||||
* | * configure.ac: Add check for no-pointer-sign warning keyword, and | David Shaw | 2005-06-13 | 2 | -1/+20 |
| | | | | | disable. This is gcc4 specific. | ||||
* | * options.h, import.c (parse_import_options, clean_sigs_from_all_uids, | David Shaw | 2005-06-12 | 3 | -6/+49 |
| | | | | | | | | import_one): Add import-clean-sigs option to automatically clean a key when importing. Note that when importing a key that is already on the local keyring, the clean applies to the merged key - i.e. existing superceded or invalid signatures are removed. | ||||
* | * getkey.c (merge_selfsigs_main, merge_selfsigs_subkey): Make sure | David Shaw | 2005-06-12 | 2 | -7/+18 |
| | | | | | | that even after keys may be merged together, we only have one chosen selfsig. |