aboutsummaryrefslogtreecommitdiffstats
path: root/sm/certpath.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2002-05-14sm/Werner Koch1-1/+1
* gpgsm.c: New option --faked-system-time * sign.c (gpgsm_sign): And use it here. * certpath.c (gpgsm_validate_path): Ditto. common/ * gettime.c: New. agent/ * cache.c (housekeeping, agent_put_cache): Use our time() wrapper. / * doc/: New * configure.ac, Makefile.am: Added doc/
2002-05-03* certpath.c (gpgsm_validate_path): Added EXPTIME arg and changedWerner Koch1-6/+22
all callers. * verify.c (gpgsm_verify): Tweaked usage of log_debug and log_error. Return EXPSIG status and add expiretime to VALIDSIG.
2002-04-15* certpath.c (find_up): New to use the authorithKeyIdentifier.Werner Koch1-4/+31
Use it in all other functions to locate the signing cert..
2002-03-28* certpath.c (gpgsm_walk_cert_chain): Be a bit more silent onWerner Koch1-1/+4
common errors.
2002-03-13* decrypt.c (gpgsm_decrypt): Allow multiple recipients.Werner Koch1-1/+4
2002-03-12* verify.c (gpgsm_verify): Detect certs-only message.Werner Koch1-2/+14
2002-02-25* server.c (option_handler): Allow to use -2 for "send all certsWerner Koch1-0/+18
except the root cert". * sign.c (add_certificate_list): Implement it here. * certpath.c (gpgsm_is_root_cert): New.
2002-02-19* certpath.c (check_cert_policy): New.Werner Koch1-3/+119
(gpgsm_validate_path): And call it from here. * gpgsm.c (main): New options --policy-file, --disable-policy-checks and --enable-policy-checks. * gpgsm.h (opt): Added policy_file, no_policy_checks.
2002-02-18* certpath.c (gpgsm_validate_path): Ask the agent to add theWerner Koch1-7/+17
certificate into the trusted list. * call-agent.c (gpgsm_agent_marktrusted): New.
2002-01-25* gpgsm.c (main): Disable core dumps.Werner Koch1-0/+61
* sign.c (add_certificate_list): New. (gpgsm_sign): Add the certificates to the CMS object. * certpath.c (gpgsm_walk_cert_chain): New. * gpgsm.h (server_control_s): Add included_certs. * gpgsm.c: Add option --include-certs. (gpgsm_init_default_ctrl): New. (main): Call it. * server.c (gpgsm_server): Ditto. (option_handler): Support --include-certs.
2002-01-23* certpath.c (gpgsm_validate_path): Print the DN of a missing issuer.Werner Koch1-2/+18
* certdump.c (gpgsm_dump_string): New. (print_dn): Replaced by above.
2002-01-22* certpath.c (unknown_criticals): New.Werner Koch1-9/+114
(allowed_ca): New. (gpgsm_validate_path): Check validity, CA attribute, path length and unknown critical extensions.
2002-01-15* import.c (gpgsm_import): Just do a basic cert check beforeWerner Koch1-9/+116
storing it. * certpath.c (gpgsm_basic_cert_check): New. * keydb.c (keydb_store_cert): New. * import.c (store_cert): Removed and change all caller to use the new function. * verify.c (store_cert): Ditto. * certlist.c (gpgsm_add_to_certlist): Validate the path * certpath.c (gpgsm_validate_path): Check the trust list. * call-agent.c (gpgsm_agent_istrusted): New.
2002-01-11* call-dirmngr.c: New.Werner Koch1-0/+31
* certpath.c (gpgsm_validate_path): Check the CRL here. * fingerprint.c (gpgsm_get_certid): New. * gpgsm.c: New options --dirmngr-program and --disable-crl-checks.
2001-12-13* keylist.c (list_cert_colon): Print alternative names of subjectWerner Koch1-2/+2
and a few other values.
2001-11-24Added new directory common to enable sharing of some code and errorWerner Koch1-6/+6
numbers between gpg, gpgsm and gpg-agent. Move some files and code to there.
2001-11-16Base code for gpgsm --verify does workWerner Koch1-4/+3
2001-11-13We have reached a state where we are able to import certs andWerner Koch1-0/+131
check the certification path.