aboutsummaryrefslogtreecommitdiffstats
path: root/g10 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Minor cleanupsWerner Koch2001-12-222-16/+23
|
* * keyserver.c (keyserver_spawn): Removed some variablesWerner Koch2001-12-228-27/+131
| | | | | | | | | | | | declaration due to shadowing warnings. * build-packet.c (build_attribute_subpkt): s/index/idx/ to avoid compiler warnig due to index(3). * getkey.c (get_ctx_handle): Use KEYDB_HANDLE as return value. * keylist.c (list_one): Made resname const. * keyedit.c (keyedit_menu): Allow "addphoto" only when --openpgp is not used. * options.skel: Changed one example photo viewer to qiv.
* Added is_file_compressedTimo Schulz2001-12-222-84/+23
|
* Add new photo ID files and modify gpgsplit to name attribute packetsDavid Shaw2001-12-214-0/+732
| | | | | properly
* Photo ID support (actually generic "attribute packet" support, but thereDavid Shaw2001-12-2116-351/+523
| | | | | is only one attribute packet defined thus far, and it's a picture)
* Nonrevocable key signature support via "nrsign". These sigs can expire,David Shaw2001-12-2110-42/+106
| | | | | but cannot be revoked. Any revocation certificates for them are ignored.
* * g10.c. options.h : New option --show-keyringWerner Koch2001-12-217-3/+35
| | | | | | * getkey.c (get_ctx_handle): New. * keylist.c (list_one): Implement option here. By David Champion.
* * options.in: Remove load-extension tigerWerner Koch2001-12-213-2/+4
| | | | | * Makefile.am (./options): append it if there is such a module.
* Only gpg (not gpgv) needs mkdtempDavid Shaw2001-12-201-2/+2
|
* Use mkdtemp() to make temp directories. If there is no mkdtemp(), provideDavid Shaw2001-12-203-26/+91
| | | | | one.
* New function to check the permissions of GNUPGHOME and the various filesDavid Shaw2001-12-208-22/+154
| | | | | | | | | that live there for safe permission/ownership (--no-permission-warning to disable) The newer glibcs print scary warnings about using mktemp(). The use here was actually safe, but the warning was bound to confuse people, so here is an arguably better tempname creator that pulls random bits from the pool.
* * g10.c, passphrase.c [CYGWIN32]: Allow this as an alias for MINGW32.Werner Koch2001-12-193-9/+13
|
* Much stricter checking of the keyserver URIDavid Shaw2001-12-189-15/+48
| | | | | | | IDEA warning for pk messages encrypted with IDEA (symmetric is already done) Print IDEA warning for each occurance except for secret key protection and unknown cipher from an encrypted message.
* Commited change from 2001-12-13 again:Werner Koch2001-12-181-2/+2
| | | | | | | | * pubkey-enc.c (get_session_key): Check that the public key algorithm is indeed usable for en/decryption. This avoid a strange error message from pubkey_decrypt if for some reasons a bad algorithm indentifier is passed.
* Remove warning - no need to check for control/illegal characters, asDavid Shaw2001-12-172-1/+5
| | | | | utf8_to_native does this for us
* Fix capitalization issuesDavid Shaw2001-12-176-28/+41
|
* Add a generic IDEA warning for when the IDEA plugin is not present. ThisDavid Shaw2001-12-177-38/+97
| | | | | | | | pops up when the user uses "--cipher-algo idea", when setpref is used to set a "S1" preference, and when a secret key protected with IDEA is used. Tweak the --pgp2 mode to use this generic warning.
* * keyserver.c (keyserver_spawn): Assert that we have dropped privs.Werner Koch2001-12-156-22/+92
| | | | | | | | | | | | | | | | | * pubkey-enc.c (get_session_key): Check that the public key algorithm is indeed usable for en/decryption. This avoid a strange error message from pubkey_decrypt if for some reasons a bad algorithm indentifier is passed. * hkp.c (hkp_export): Do not print possible control characters from a keyserver response. (parse_hkp_index): Made uid an unsigned char* because it is passed to isspace(). (hkp_search): Ditto for the char* vars. * g10.c (main): Print the IDEA warning also for -c and -se. * g10.c (get_temp_dir): Assert that we have dropped privs * encode.c (encode_crypt): Include the first key into the --pgp2 check.
* Fixed some types for portability. Noted by Stefan Bellon.David Shaw2001-12-122-2/+7
|
* PGP2 patch. --pgp2 sets things up for pgp2 compatibility, and prints aDavid Shaw2001-12-075-6/+85
| | | | | | warning if the user does something that would make the message not compatible (i.e. encrypt with a non-RSA key, etc.)
* Sig expiration codeDavid Shaw2001-12-0712-44/+244
| | | | | | | Offer to expire a key signature when the key the user is signing expires Expired sigs cause an error return If --expert is set, prompt for sig duration
* Allow a regular key signature to promote a local signature to fullDavid Shaw2001-12-072-3/+41
| | | | | exportable status
* New option --expertDavid Shaw2001-12-074-4/+58
| | | | | | Do not allow signing a revoked UID unless --expert is set, and ask even then. Do not allow signing a revoked key unless --expert is set, and ask even then.
* Bug fix in "showpref"David Shaw2001-12-075-4/+50
| | | | | Allow setting a no-compression preference
* "eyesonly" patch. Implements the for-your-eyes-only feature.David Shaw2001-12-072-1/+22
|
* "sigclass" patch - adds key signature class levels, notation and policy-urlDavid Shaw2001-12-0610-22/+286
| | | | | displays in key listings, and shows flags for signature features.
* The new keyserver code itselfDavid Shaw2001-12-061-0/+988
|
* (sigh). Missed one file.David Shaw2001-12-061-0/+20
|
* Generic keyserver API codeDavid Shaw2001-12-069-197/+462
|
* * trustdb.c (mark_usable_uid_certs): Fix segfault from badWerner Koch2001-11-272-2/+8
| | | | | initialization and fix reversed key signature expiration check.
* * export.c (do_export_stream): Put all given names into a searchWerner Koch2001-11-094-30/+40
| | | | | | description and change the loop so that all matching names are returned.
* Tweaked v3 -c decryption, let --force-v4-certs use SHA-1 for all RSA keys.Werner Koch2001-11-084-9/+39
|
* fixes for the 1.0.6b bugs David recently posted to gnupg-devel.Werner Koch2001-11-089-34/+151
|
* more fixes due to automake 1.5SNAP-1-0-6bWerner Koch2001-10-235-7/+42
|
* Minor fixesWerner Koch2001-10-222-14/+13
|
* Fixed the Read-Only keyring bug and changed the way the keydb interfaceWerner Koch2001-10-186-322/+429
| | | | | works.
* Option --no-force-v3-sigs added and disabled agent stuff for RISC OSStefan Bellon2001-10-061-0/+5
|
* Disabled agent stuff for RISC OSStefan Bellon2001-10-061-0/+2
|
* Option --no-force-v3-sigs addedStefan Bellon2001-10-061-0/+3
|
* calculate time of next trustdb checkWerner Koch2001-09-287-135/+212
|
* make check does work againWerner Koch2001-09-284-27/+49
|
* Encryption should work againWerner Koch2001-09-276-229/+242
|
* completed the new key validation codeWerner Koch2001-09-266-71/+187
|
* made keylisting fasterWerner Koch2001-09-254-73/+197
|
* Changed signature status cacheWerner Koch2001-09-2516-278/+466
|
* Revamped the trustDBWerner Koch2001-09-2420-3667/+1568
|
* Code cleanupsWerner Koch2001-09-209-175/+119
|
* Bug fixes and Timo's patchesWerner Koch2001-09-1912-112/+402
|
* Check for garbled packetsWerner Koch2001-09-183-3/+32
|
* more bug fixesand some warning cleanupsWerner Koch2001-09-0912-50/+72
|