aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* * exec.c [__CYGWIN32__]: Keep cygwin separate from Mingw32;Werner Koch2002-10-216-17/+27
| | | | | | | | | | we don't need it here as it behaves more like a Posix system. * passphrase.c (agent_get_passphrase): Ditto. * tdbio.c (MY_O_BINARY): Need binary mode with Cygwin. * g10.c, gpgv.c (main) [__CYGWIN32__]: Don't get the homedir from the registry.
* * rndw32.c [__CYGWIN32__]: Don't include winioctl.h - it is notWerner Koch2002-10-213-11/+16
| | | | | | | | required anymore. * random.c (read_seed_file,update_random_seed_file): Use binary mode for __CYGWIN__.
* * configure.ac (try_gettext): Remove special case for cygwin.Werner Koch2002-10-214-7/+21
| | | | | | | | | | | | | This removes all the DOS specific macros and let Cygwin work like a real OS. Needs a couple of changes elsewhere but after all, GnuPG presents itself much more like a Posix program and can be used in a full Cygwin environment; e.g. used along with mutt. Changes suggested by Volker Quetschke. * acinclude.m4 (GNUPG_SYS_NM_PARSE): Allow for underscore in test symbols. Useful for Cygwin builds. (GNUPG_SYS_SYMBOL_UNDERSCORE): Don't hardwire to yes for Cygwin.
* * gpg.sgml: Clarify --force-mdc, and document --disable-mdc.David Shaw2002-10-192-4/+16
|
* * et.po: Updated.Werner Koch2002-10-1720-5672/+5819
| | | | | | | * de.po: Fixed 2 fuzzy entries. update-po done.
* * config.links (powerpc-apple-darwin6.1): Disable assemblerWerner Koch2002-10-172-1/+11
| | | | | due to non-working modules/as. Suggested by Gordon Worley.
* * faq.raw: New upstream version with new sections 1.3, 5.8, 6.20Werner Koch2002-10-172-196/+302
| | | | | and a list of MUAs. Replaced ftp.guug.de URL.
* * README: Add an installation note for Darwin 6.1.Werner Koch2002-10-173-8/+16
|
* * pkclist.c (do_edit_ownertrust): Show all user IDs. This shouldWerner Koch2002-10-172-0/+36
| | | | | | be enhanced to also show the current trust level. Suggested by Florian Weimer.
* Bump version number.David Shaw2002-10-162-2/+3
|
* * README: Some typo fixes from Florian Weimer.David Shaw2002-10-162-11/+16
|
* * NEWS: Some 1.2.1 notes.David Shaw2002-10-152-0/+18
|
* * rndunix.c (my_popen): Make sure that stdin and stderr areWerner Koch2002-10-124-25/+55
| | | | | | | | | | | connected to a file. This is to avoid NetBSD to complain about set{u,g}id programs invoked with fd 0, 2 closed. Reported by Cristian Biere. (start_gatherer): Likewise. Reordered code. * configure.ac (NAME_OF_DEV_URANDOM): Don't use /dev/srandom for NetBSD. Noted by Christian Biere.
* Comment fix for make_filenameWerner Koch2002-10-121-4/+4
|
* * keygen.c (print_status_key_created): New.Werner Koch2002-10-122-2/+36
| | | | | | (do_generate_keypair): Use it to print the fingerprint. (generate_subkeypair): Likewise.
* * DETAILS (KEY_CREATED): Enhanced by fingerprint.Werner Koch2002-10-122-1/+7
|
* * keyedit.c (menu_addrevoker): Properly back out if the signature fails.David Shaw2002-10-112-0/+6
|
* * gpgkeys_ldap.c (search_key, main): Make sure LDAP values are freed inDavid Shaw2002-10-092-8/+12
| | | | | case of error.
* * gpgkeys_ldap.c (main): Fix error return code.David Shaw2002-10-092-1/+5
|
* * mainproc.c (symkey_decrypt_sesskey): Fix compiler warning.David Shaw2002-10-072-1/+4
|
* * configure.ac: OpenLDAP 2.0.27 changed the dependencies again. Add aDavid Shaw2002-10-072-5/+14
| | | | | | "LDAPLIBS" variable so users can try and suggest the right dependencies for their platform.
* * keylist.c (print_capabilities): Properly indicate per-key capabilitiesDavid Shaw2002-10-072-7/+18
| | | | | | of sign&encrypt primary keys that have secret-parts-missing (i.e. no capabilities at all).
* * getkey.c (get_pubkey_direct): Don't cache keys retrieved via thisDavid Shaw2002-10-043-5/+15
| | | | | | | | | function as they may not have all their fields filled in. * sig-check.c (signature_check2): Use new is_primary flag to check rather than comparing main_keyid with keyid as this still works in the case of a not fully filled in pk.
* * passphrase.c (agent_get_passphrase): Fixed signed/unsigned charWerner Koch2002-10-042-10/+16
| | | | | problem in %-escaping. Noted by Ingo Kl�cker.
* * gpg.sgml: Note that '#' means secret-key-unavailable, and that keyserverDavid Shaw2002-10-032-3/+11
| | | | | schemes are case-insensitive.
* * keylist.c (print_capabilities): Secret-parts-missing keys should showDavid Shaw2002-10-032-6/+9
| | | | | that fact in the capabilities.
* * packet.h, parse_packet (parse_key): Add is_primary flag for public keysDavid Shaw2002-10-034-3/+23
| | | | | | | | (it already exists for secret keys). * keylist.c (print_capabilities): Only primary signing keys can certify other keys.
* * import.c (import_secret_one): Check for an illegal (>110) protectionDavid Shaw2002-10-026-14/+37
| | | | | | | | | | | | | | | cipher when importing a secret key. * keylist.c (list_keyblock_print): Show a '#' for a secret-parts-missing key. * parse_packet.c (parse_key): Some comments. * revoke.c (gen_revoke): Remove some debugging code. * trustdb.c (verify_own_keys): Make trusted-key a non-deprecated option again.
* * longlong.h: Some whitespace changes in HPPA to fix assembler problems onDavid Shaw2002-10-022-20/+25
| | | | | HP-UX. From David Ellement.
* * tiger.c (tiger_get_info): Select the OID to use for TIGER at compileDavid Shaw2002-10-022-0/+14
| | | | | time.
* * configure.ac: Make "new" the default for TIGER. Still useDavid Shaw2002-10-022-1/+4
| | | | | --enable-new-tiger to select new from autoconf.
* * configure.ac: Use a new option (--enable-new-tiger) to enable TIGER withDavid Shaw2002-10-022-0/+16
| | | | | the correct OID.
* * seckey-cert.c (do_check): Don't give the IDEA warning unless the cipherDavid Shaw2002-10-012-1/+5
| | | | | in question is in fact IDEA.
* From devel branchDavid Shaw2002-10-012-15/+10
| | | | | | | | | 2002-09-26 Werner Koch <[email protected]> * tiger.c (tiger_get_info): Use a regular OID. Note that this breaks all TIGER generated signatures; if we want to do something about it we have to do it in ../g10/sig-check.c .
* * import.c (import_one): Make sure that a newly imported key starts with aDavid Shaw2002-10-012-1/+24
| | | | | | clean ownertrust. (import_revoke_cert): Remove ultimate trust when revoking an ultimately trusted key.
* * getkey.c (get_pubkey_direct): New.Werner Koch2002-10-012-1/+62
| | | | | | | (merge_selfsigs_main): Use it here to look for an ultimately trusted key. Using the full get_pubkey might lead to a infinitive recursion.
* * pl.po: Fixed Content-Type entry to utf-8 which is the actualWerner Koch2002-10-012-9/+8
| | | | | encoding.
* * gpg.sgml: Note that --pgp2 disables --textmode when encrypting.David Shaw2002-09-302-1/+6
|
* * g10.c (main): Disable --textmode when encrypting (symmetric or pk) inDavid Shaw2002-09-302-0/+17
| | | | | | --pgp2 mode as PGP 2 can't handle the unknown length literal packet. Reported by Michael Richardson.
* * keyserver.c (parse_keyserver_uri): Force the keyserver URI scheme toDavid Shaw2002-09-302-0/+13
| | | | | lowercase to be case-insensitive.
* * sig-check.c (check_key_signature2): Properly handle a non-designatedDavid Shaw2002-09-282-2/+10
| | | | | revocation import.
* * g10.c (set_homedir): New. Changed all direct assignments to useWerner Koch2002-09-263-15/+40
| | | | | | this. * gpgv.c (set_homedir): Ditto.
* * gpgkeys_ldap.c (send_key): Removed non-constant initializers.Werner Koch2002-09-262-8/+7
|
* * Makefile.am: Link bftest with EGDLIBS (i.e. NETLIBS) as EGD usesDavid Shaw2002-09-252-1/+6
| | | | | sockets.
* * THANKS: Remove duplicate.David Shaw2002-09-253-1/+9
| | | | | * configure.ac: Add NETLIBS to EGDLIBS when using EGD as EGD uses sockets.
* * ca.po, fr.po: Updated.Werner Koch2002-09-243-243/+198
|
* 1.2.0 has been released, prepare version numbers for possible bug fix release.Werner Koch2002-09-212-2/+7
|
* * configure.ac: Bumbed version number and set development versionWerner Koch2002-09-213-12/+26
| | | | | to no.
* * mk-w32-dist: Don't use iconv for pl.po.Werner Koch2002-09-202-2/+7
|
* updated from sourceWerner Koch2002-09-201-14/+17
|