2003-08-05 19:11:04 +02:00
|
|
|
|
/* gpgsm.h - Global definitions for GpgSM
|
2010-03-08 13:22:18 +01:00
|
|
|
|
* Copyright (C) 2001, 2003, 2004, 2007, 2009,
|
|
|
|
|
* 2010 Free Software Foundation, Inc.
|
2003-08-05 19:11:04 +02:00
|
|
|
|
*
|
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
|
*
|
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-08-05 19:11:04 +02:00
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-11-05 12:02:19 +01:00
|
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2003-08-05 19:11:04 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef GPGSM_H
|
|
|
|
|
#define GPGSM_H
|
|
|
|
|
|
|
|
|
|
#ifdef GPG_ERR_SOURCE_DEFAULT
|
|
|
|
|
#error GPG_ERR_SOURCE_DEFAULT already defined
|
|
|
|
|
#endif
|
|
|
|
|
#define GPG_ERR_SOURCE_DEFAULT GPG_ERR_SOURCE_GPGSM
|
|
|
|
|
#include <gpg-error.h>
|
2004-12-18 11:22:10 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
#include <ksba.h>
|
|
|
|
|
#include "../common/util.h"
|
2007-11-19 17:03:50 +01:00
|
|
|
|
#include "../common/status.h"
|
|
|
|
|
#include "../common/audit.h"
|
2009-07-07 12:02:41 +02:00
|
|
|
|
#include "../common/session-env.h"
|
2017-02-16 15:16:48 +01:00
|
|
|
|
#include "../common/ksba-io-support.h"
|
2017-06-07 11:50:54 +02:00
|
|
|
|
#include "../common/compliance.h"
|
2009-07-07 12:02:41 +02:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2009-03-26 20:27:04 +01:00
|
|
|
|
#define MAX_DIGEST_LEN 64
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2008-06-12 16:24:46 +02:00
|
|
|
|
struct keyserver_spec
|
|
|
|
|
{
|
|
|
|
|
struct keyserver_spec *next;
|
|
|
|
|
|
|
|
|
|
char *host;
|
|
|
|
|
int port;
|
|
|
|
|
char *user;
|
|
|
|
|
char *pass;
|
|
|
|
|
char *base;
|
2019-11-09 11:29:59 +01:00
|
|
|
|
unsigned int use_ldaps:1;
|
2008-06-12 16:24:46 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2006-09-06 18:35:52 +02:00
|
|
|
|
/* A large struct named "opt" to keep global flags. */
|
2020-02-10 16:37:34 +01:00
|
|
|
|
EXTERN_UNLESS_MAIN_MODULE
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct
|
2006-09-06 18:35:52 +02:00
|
|
|
|
{
|
2003-08-05 19:11:04 +02:00
|
|
|
|
unsigned int debug; /* debug flags (DBG_foo_VALUE) */
|
|
|
|
|
int verbose; /* verbosity level */
|
|
|
|
|
int quiet; /* be as quiet as possible */
|
|
|
|
|
int batch; /* run in batch mode, i.e w/o any user interaction */
|
|
|
|
|
int answer_yes; /* assume yes on most questions */
|
|
|
|
|
int answer_no; /* assume no on most questions */
|
|
|
|
|
int dry_run; /* don't change any persistent data */
|
2014-08-14 17:14:21 +02:00
|
|
|
|
int no_homedir_creation;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2004-05-11 11:15:56 +02:00
|
|
|
|
const char *config_filename; /* Name of the used config file. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
const char *agent_program;
|
2009-07-07 12:02:41 +02:00
|
|
|
|
|
|
|
|
|
session_env_t session_env;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char *lc_ctype;
|
|
|
|
|
char *lc_messages;
|
|
|
|
|
|
2014-11-28 09:44:19 +01:00
|
|
|
|
int autostart;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
const char *dirmngr_program;
|
2008-02-19 11:33:35 +01:00
|
|
|
|
int disable_dirmngr; /* Do not do any dirmngr calls. */
|
2004-02-13 13:40:23 +01:00
|
|
|
|
const char *protect_tool_program;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char *outfile; /* name of output file */
|
|
|
|
|
|
2018-10-25 15:46:23 +02:00
|
|
|
|
int with_key_data;/* include raw key in the column delimited output */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int fingerprint; /* list fingerprints in all key listings */
|
|
|
|
|
|
2004-02-17 16:05:04 +01:00
|
|
|
|
int with_md5_fingerprint; /* Also print an MD5 fingerprint for
|
|
|
|
|
standard key listings. */
|
|
|
|
|
|
2010-10-08 13:11:08 +02:00
|
|
|
|
int with_keygrip; /* Option --with-keygrip active. */
|
|
|
|
|
|
2017-10-17 21:10:19 +02:00
|
|
|
|
int with_key_screening; /* Option --with-key-screening active. */
|
|
|
|
|
|
2016-03-07 18:09:41 +01:00
|
|
|
|
int pinentry_mode;
|
2018-03-23 09:06:20 +01:00
|
|
|
|
int request_origin;
|
2016-03-07 18:09:41 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int armor; /* force base64 armoring (see also ctrl.with_base64) */
|
|
|
|
|
int no_armor; /* don't try to figure out whether data is base64 armored*/
|
|
|
|
|
|
2007-03-20 11:00:55 +01:00
|
|
|
|
const char *p12_charset; /* Use this charset for encoding the
|
|
|
|
|
pkcs#12 passphrase. */
|
|
|
|
|
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
const char *def_cipher_algoid; /* cipher algorithm to use if
|
|
|
|
|
nothing else is specified */
|
|
|
|
|
|
|
|
|
|
int def_compress_algo; /* Ditto for compress algorithm */
|
|
|
|
|
|
2009-03-26 20:27:04 +01:00
|
|
|
|
int forced_digest_algo; /* User forced hash algorithm. */
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char *def_recipient; /* userID of the default recipient */
|
|
|
|
|
int def_recipient_self; /* The default recipient is the default key */
|
|
|
|
|
|
2003-12-17 18:12:14 +01:00
|
|
|
|
int no_encrypt_to; /* Ignore all as encrypt to marked recipients. */
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char *local_user; /* NULL or argument to -u */
|
|
|
|
|
|
2007-12-13 16:45:40 +01:00
|
|
|
|
int extra_digest_algo; /* A digest algorithm also used for
|
|
|
|
|
verification of signatures. */
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int always_trust; /* Trust the given keys even if there is no
|
|
|
|
|
valid certification chain */
|
|
|
|
|
int skip_verify; /* do not check signatures on data */
|
|
|
|
|
|
|
|
|
|
int lock_once; /* Keep lock once they are set */
|
|
|
|
|
|
|
|
|
|
int ignore_time_conflict; /* Ignore certain time conflicts */
|
|
|
|
|
|
|
|
|
|
int no_crl_check; /* Don't do a CRL check */
|
2005-04-21 11:33:07 +02:00
|
|
|
|
int no_trusted_cert_crl_check; /* Don't run a CRL check for trusted certs. */
|
2004-04-07 19:59:18 +02:00
|
|
|
|
int force_crl_refresh; /* Force refreshing the CRL. */
|
2003-12-01 11:54:30 +01:00
|
|
|
|
int enable_ocsp; /* Default to use OCSP checks. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
char *policy_file; /* full pathname of policy file */
|
|
|
|
|
int no_policy_check; /* ignore certificate policies */
|
|
|
|
|
int no_chain_validation; /* Bypass all cert chain validity tests */
|
2004-02-20 14:46:21 +01:00
|
|
|
|
int ignore_expiration; /* Ignore the notAfter validity checks. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
int auto_issuer_key_retrieve; /* try to retrieve a missing issuer key. */
|
2005-11-23 10:05:45 +01:00
|
|
|
|
|
|
|
|
|
int qualsig_approval; /* Set to true if this software has
|
|
|
|
|
officially been approved to create an
|
|
|
|
|
verify qualified signatures. This is a
|
|
|
|
|
runtime option in case we want to check
|
|
|
|
|
the integrity of the software at
|
|
|
|
|
runtime. */
|
2008-06-12 16:24:46 +02:00
|
|
|
|
|
|
|
|
|
struct keyserver_spec *keyserver;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2009-12-10 14:00:30 +01:00
|
|
|
|
/* A list of certificate extension OIDs which are ignored so that
|
|
|
|
|
one can claim that a critical extension has been handled. One
|
|
|
|
|
OID per string. */
|
|
|
|
|
strlist_t ignored_cert_extensions;
|
|
|
|
|
|
2017-06-07 11:50:54 +02:00
|
|
|
|
enum gnupg_compliance_mode compliance;
|
2019-04-30 08:25:59 +02:00
|
|
|
|
|
|
|
|
|
/* Enable creation of authenticode signatures. */
|
|
|
|
|
int authenticode;
|
|
|
|
|
|
|
|
|
|
/* A list of extra attributes put into a signed data object. For a
|
|
|
|
|
* signed each attribute each string has the format:
|
|
|
|
|
* <oid>:s:<hex_or_filename>
|
|
|
|
|
* and for an unsigned attribute
|
|
|
|
|
* <oid>:u:<hex_or_filename>
|
|
|
|
|
* The OID is in the usual dotted decimal for. The HEX_OR_FILENAME
|
|
|
|
|
* is either a list of hex digits or a filename with the DER encoded
|
|
|
|
|
* value. A filename is detected by the presence of a slash in the
|
|
|
|
|
* HEX_OR_FILENAME. The actual value needs to be encoded as a SET OF
|
|
|
|
|
* attribute values. */
|
|
|
|
|
strlist_t attributes;
|
2009-12-10 14:00:30 +01:00
|
|
|
|
} opt;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2006-09-06 18:35:52 +02:00
|
|
|
|
/* Debug values and macros. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
#define DBG_X509_VALUE 1 /* debug x.509 data reading/writing */
|
|
|
|
|
#define DBG_MPI_VALUE 2 /* debug mpi details */
|
|
|
|
|
#define DBG_CRYPTO_VALUE 4 /* debug low level crypto */
|
|
|
|
|
#define DBG_MEMORY_VALUE 32 /* debug memory allocation stuff */
|
|
|
|
|
#define DBG_CACHE_VALUE 64 /* debug the caching */
|
|
|
|
|
#define DBG_MEMSTAT_VALUE 128 /* show memory statistics */
|
|
|
|
|
#define DBG_HASHING_VALUE 512 /* debug hashing operations */
|
2015-04-06 13:42:17 +02:00
|
|
|
|
#define DBG_IPC_VALUE 1024 /* debug assuan communication */
|
2019-05-14 20:03:44 +02:00
|
|
|
|
#define DBG_CLOCK_VALUE 4096
|
|
|
|
|
#define DBG_LOOKUP_VALUE 8192 /* debug the key lookup */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
#define DBG_X509 (opt.debug & DBG_X509_VALUE)
|
|
|
|
|
#define DBG_CRYPTO (opt.debug & DBG_CRYPTO_VALUE)
|
|
|
|
|
#define DBG_MEMORY (opt.debug & DBG_MEMORY_VALUE)
|
|
|
|
|
#define DBG_CACHE (opt.debug & DBG_CACHE_VALUE)
|
|
|
|
|
#define DBG_HASHING (opt.debug & DBG_HASHING_VALUE)
|
2015-04-06 13:42:17 +02:00
|
|
|
|
#define DBG_IPC (opt.debug & DBG_IPC_VALUE)
|
2019-05-14 20:03:44 +02:00
|
|
|
|
#define DBG_CLOCK (opt.debug & DBG_CLOCK_VALUE)
|
|
|
|
|
#define DBG_LOOKUP (opt.debug & DBG_LOOKUP_VALUE)
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2006-09-06 18:35:52 +02:00
|
|
|
|
/* Forward declaration for an object defined in server.c */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
struct server_local_s;
|
|
|
|
|
|
2006-09-06 18:35:52 +02:00
|
|
|
|
/* Session control object. This object is passed down to most
|
|
|
|
|
functions. Note that the default values for it are set by
|
|
|
|
|
gpgsm_init_default_ctrl(). */
|
|
|
|
|
struct server_control_s
|
|
|
|
|
{
|
2004-02-17 16:05:04 +01:00
|
|
|
|
int no_server; /* We are not running under server control */
|
|
|
|
|
int status_fd; /* Only for non-server mode */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
struct server_local_s *server_local;
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2007-11-19 17:03:50 +01:00
|
|
|
|
audit_ctx_t audit; /* NULL or a context for the audit subsystem. */
|
2007-12-12 11:28:30 +01:00
|
|
|
|
int agent_seen; /* Flag indicating that the gpg-agent has been
|
|
|
|
|
accessed. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
|
2004-02-17 16:05:04 +01:00
|
|
|
|
int with_colons; /* Use column delimited output format */
|
2014-06-03 21:35:59 +02:00
|
|
|
|
int with_secret; /* Mark secret keys in a public key listing. */
|
2004-02-17 16:05:04 +01:00
|
|
|
|
int with_chain; /* Include the certifying certs in a listing */
|
|
|
|
|
int with_validation;/* Validate each key while listing. */
|
2009-03-18 12:18:56 +01:00
|
|
|
|
int with_ephemeral_keys; /* Include ephemeral flagged keys in the
|
|
|
|
|
keylisting. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2004-02-17 16:05:04 +01:00
|
|
|
|
int autodetect_encoding; /* Try to detect the input encoding */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int is_pem; /* Is in PEM format */
|
|
|
|
|
int is_base64; /* is in plain base-64 format */
|
|
|
|
|
|
|
|
|
|
int create_base64; /* Create base64 encoded output */
|
|
|
|
|
int create_pem; /* create PEM output */
|
|
|
|
|
const char *pem_name; /* PEM name to use */
|
|
|
|
|
|
|
|
|
|
int include_certs; /* -1 to send all certificates in the chain
|
|
|
|
|
along with a signature or the number of
|
|
|
|
|
certificates up the chain (0 = none, 1 = only
|
|
|
|
|
signer) */
|
2003-12-01 11:54:30 +01:00
|
|
|
|
int use_ocsp; /* Set to true if OCSP should be used. */
|
2011-12-07 16:15:15 +01:00
|
|
|
|
int validation_model; /* 0 := standard model (shell),
|
|
|
|
|
1 := chain model,
|
|
|
|
|
2 := STEED model. */
|
2015-06-29 11:03:58 +02:00
|
|
|
|
int offline; /* If true gpgsm won't do any network access. */
|
2019-12-06 20:12:22 +01:00
|
|
|
|
|
|
|
|
|
/* The current time. Used as a helper in certchain.c. */
|
|
|
|
|
ksba_isotime_t current_time;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
};
|
|
|
|
|
|
2006-09-06 18:35:52 +02:00
|
|
|
|
|
|
|
|
|
/* An object to keep a list of certificates. */
|
2011-02-04 12:57:53 +01:00
|
|
|
|
struct certlist_s
|
2006-09-06 18:35:52 +02:00
|
|
|
|
{
|
2003-08-05 19:11:04 +02:00
|
|
|
|
struct certlist_s *next;
|
2003-12-17 13:28:24 +01:00
|
|
|
|
ksba_cert_t cert;
|
2003-12-17 18:12:14 +01:00
|
|
|
|
int is_encrypt_to; /* True if the certificate has been set through
|
|
|
|
|
the --encrypto-to option. */
|
2008-06-26 21:09:07 +02:00
|
|
|
|
int hash_algo; /* Used to track the hash algorithm to use. */
|
|
|
|
|
const char *hash_algo_oid; /* And the corresponding OID. */
|
2003-08-05 19:11:04 +02:00
|
|
|
|
};
|
2003-12-17 18:12:14 +01:00
|
|
|
|
typedef struct certlist_s *certlist_t;
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2006-09-25 20:29:20 +02:00
|
|
|
|
|
|
|
|
|
/* A structure carrying information about trusted root certificates. */
|
|
|
|
|
struct rootca_flags_s
|
|
|
|
|
{
|
2007-08-10 18:52:05 +02:00
|
|
|
|
unsigned int valid:1; /* The rest of the structure has valid
|
|
|
|
|
information. */
|
2006-09-25 20:29:20 +02:00
|
|
|
|
unsigned int relax:1; /* Relax checking of root certificates. */
|
2007-08-10 18:52:05 +02:00
|
|
|
|
unsigned int chain_model:1; /* Root requires the use of the chain model. */
|
2006-09-25 20:29:20 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
/*-- gpgsm.c --*/
|
|
|
|
|
void gpgsm_exit (int rc);
|
|
|
|
|
void gpgsm_init_default_ctrl (struct server_control_s *ctrl);
|
2007-08-10 18:52:05 +02:00
|
|
|
|
int gpgsm_parse_validation_model (const char *model);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- server.c --*/
|
2003-12-17 18:12:14 +01:00
|
|
|
|
void gpgsm_server (certlist_t default_recplist);
|
2004-12-17 15:36:16 +01:00
|
|
|
|
gpg_error_t gpgsm_status (ctrl_t ctrl, int no, const char *text);
|
2015-07-26 12:50:16 +02:00
|
|
|
|
gpg_error_t gpgsm_status2 (ctrl_t ctrl, int no, ...) GPGRT_ATTR_SENTINEL(0);
|
2004-12-17 15:36:16 +01:00
|
|
|
|
gpg_error_t gpgsm_status_with_err_code (ctrl_t ctrl, int no, const char *text,
|
|
|
|
|
gpg_err_code_t ec);
|
2016-11-10 17:01:19 +01:00
|
|
|
|
gpg_error_t gpgsm_status_with_error (ctrl_t ctrl, int no, const char *text,
|
|
|
|
|
gpg_error_t err);
|
2008-02-14 20:50:10 +01:00
|
|
|
|
gpg_error_t gpgsm_proxy_pinentry_notify (ctrl_t ctrl,
|
|
|
|
|
const unsigned char *line);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- fingerprint --*/
|
2005-06-16 10:12:03 +02:00
|
|
|
|
unsigned char *gpgsm_get_fingerprint (ksba_cert_t cert, int algo,
|
|
|
|
|
unsigned char *array, int *r_len);
|
2003-12-17 13:28:24 +01:00
|
|
|
|
char *gpgsm_get_fingerprint_string (ksba_cert_t cert, int algo);
|
|
|
|
|
char *gpgsm_get_fingerprint_hexstring (ksba_cert_t cert, int algo);
|
2009-03-25 17:05:16 +01:00
|
|
|
|
unsigned long gpgsm_get_short_fingerprint (ksba_cert_t cert,
|
|
|
|
|
unsigned long *r_high);
|
2005-06-16 10:12:03 +02:00
|
|
|
|
unsigned char *gpgsm_get_keygrip (ksba_cert_t cert, unsigned char *array);
|
2003-12-17 13:28:24 +01:00
|
|
|
|
char *gpgsm_get_keygrip_hexstring (ksba_cert_t cert);
|
2004-05-11 17:36:48 +02:00
|
|
|
|
int gpgsm_get_key_algo_info (ksba_cert_t cert, unsigned int *nbits);
|
2017-10-17 21:10:19 +02:00
|
|
|
|
gcry_mpi_t gpgsm_get_rsa_modulus (ksba_cert_t cert);
|
2003-12-17 13:28:24 +01:00
|
|
|
|
char *gpgsm_get_certid (ksba_cert_t cert);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-- certdump.c --*/
|
2007-03-19 15:35:04 +01:00
|
|
|
|
void gpgsm_print_serial (estream_t fp, ksba_const_sexp_t p);
|
|
|
|
|
void gpgsm_print_time (estream_t fp, ksba_isotime_t t);
|
2004-09-30 23:37:11 +02:00
|
|
|
|
void gpgsm_print_name2 (FILE *fp, const char *string, int translate);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
void gpgsm_print_name (FILE *fp, const char *string);
|
2007-03-19 15:35:04 +01:00
|
|
|
|
void gpgsm_es_print_name (estream_t fp, const char *string);
|
2008-10-28 12:41:52 +01:00
|
|
|
|
void gpgsm_es_print_name2 (estream_t fp, const char *string, int translate);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2006-06-27 16:32:34 +02:00
|
|
|
|
void gpgsm_cert_log_name (const char *text, ksba_cert_t cert);
|
|
|
|
|
|
2003-12-17 13:28:24 +01:00
|
|
|
|
void gpgsm_dump_cert (const char *text, ksba_cert_t cert);
|
|
|
|
|
void gpgsm_dump_serial (ksba_const_sexp_t p);
|
2003-10-31 13:12:47 +01:00
|
|
|
|
void gpgsm_dump_time (ksba_isotime_t t);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
void gpgsm_dump_string (const char *string);
|
|
|
|
|
|
2004-02-13 18:06:50 +01:00
|
|
|
|
char *gpgsm_format_serial (ksba_const_sexp_t p);
|
2004-09-30 23:37:11 +02:00
|
|
|
|
char *gpgsm_format_name2 (const char *name, int translate);
|
2004-02-13 18:06:50 +01:00
|
|
|
|
char *gpgsm_format_name (const char *name);
|
2007-11-19 17:03:50 +01:00
|
|
|
|
char *gpgsm_format_sn_issuer (ksba_sexp_t sn, const char *issuer);
|
2004-02-13 18:06:50 +01:00
|
|
|
|
|
2006-11-14 11:23:21 +01:00
|
|
|
|
char *gpgsm_fpr_and_name_for_status (ksba_cert_t cert);
|
|
|
|
|
|
2004-02-13 18:06:50 +01:00
|
|
|
|
char *gpgsm_format_keydesc (ksba_cert_t cert);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-- certcheck.c --*/
|
2003-12-17 13:28:24 +01:00
|
|
|
|
int gpgsm_check_cert_sig (ksba_cert_t issuer_cert, ksba_cert_t cert);
|
|
|
|
|
int gpgsm_check_cms_signature (ksba_cert_t cert, ksba_const_sexp_t sigval,
|
2007-08-10 18:52:05 +02:00
|
|
|
|
gcry_md_hd_t md, int hash_algo, int *r_pkalgo);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
/* fixme: move create functions to another file */
|
2004-04-26 15:29:09 +02:00
|
|
|
|
int gpgsm_create_cms_signature (ctrl_t ctrl,
|
|
|
|
|
ksba_cert_t cert, gcry_md_hd_t md, int mdalgo,
|
2005-06-16 10:12:03 +02:00
|
|
|
|
unsigned char **r_sigval);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-- certchain.c --*/
|
2007-08-10 18:52:05 +02:00
|
|
|
|
|
|
|
|
|
/* Flags used with gpgsm_validate_chain. */
|
|
|
|
|
#define VALIDATE_FLAG_NO_DIRMNGR 1
|
|
|
|
|
#define VALIDATE_FLAG_CHAIN_MODEL 2
|
2011-12-07 16:15:15 +01:00
|
|
|
|
#define VALIDATE_FLAG_STEED 4
|
2007-08-10 18:52:05 +02:00
|
|
|
|
|
2008-02-13 17:47:14 +01:00
|
|
|
|
int gpgsm_walk_cert_chain (ctrl_t ctrl,
|
|
|
|
|
ksba_cert_t start, ksba_cert_t *r_next);
|
2003-12-17 13:28:24 +01:00
|
|
|
|
int gpgsm_is_root_cert (ksba_cert_t cert);
|
2003-12-17 18:12:14 +01:00
|
|
|
|
int gpgsm_validate_chain (ctrl_t ctrl, ksba_cert_t cert,
|
2007-08-10 18:52:05 +02:00
|
|
|
|
ksba_isotime_t checktime,
|
2004-02-17 16:05:04 +01:00
|
|
|
|
ksba_isotime_t r_exptime,
|
2007-03-19 15:35:04 +01:00
|
|
|
|
int listmode, estream_t listfp,
|
2007-08-10 18:52:05 +02:00
|
|
|
|
unsigned int flags, unsigned int *retflags);
|
2008-02-13 17:47:14 +01:00
|
|
|
|
int gpgsm_basic_cert_check (ctrl_t ctrl, ksba_cert_t cert);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- certlist.c --*/
|
2019-05-27 15:44:16 +02:00
|
|
|
|
int gpgsm_cert_use_sign_p (ksba_cert_t cert, int silent);
|
2003-12-17 13:28:24 +01:00
|
|
|
|
int gpgsm_cert_use_encrypt_p (ksba_cert_t cert);
|
|
|
|
|
int gpgsm_cert_use_verify_p (ksba_cert_t cert);
|
|
|
|
|
int gpgsm_cert_use_decrypt_p (ksba_cert_t cert);
|
|
|
|
|
int gpgsm_cert_use_cert_p (ksba_cert_t cert);
|
2004-08-18 16:38:47 +02:00
|
|
|
|
int gpgsm_cert_use_ocsp_p (ksba_cert_t cert);
|
2011-12-07 16:15:15 +01:00
|
|
|
|
int gpgsm_cert_has_well_known_private_key (ksba_cert_t cert);
|
2007-08-23 19:41:22 +02:00
|
|
|
|
int gpgsm_certs_identical_p (ksba_cert_t cert_a, ksba_cert_t cert_b);
|
2003-12-17 18:12:14 +01:00
|
|
|
|
int gpgsm_add_cert_to_certlist (ctrl_t ctrl, ksba_cert_t cert,
|
|
|
|
|
certlist_t *listaddr, int is_encrypt_to);
|
|
|
|
|
int gpgsm_add_to_certlist (ctrl_t ctrl, const char *name, int secret,
|
|
|
|
|
certlist_t *listaddr, int is_encrypt_to);
|
|
|
|
|
void gpgsm_release_certlist (certlist_t list);
|
2016-11-10 17:01:19 +01:00
|
|
|
|
int gpgsm_find_cert (ctrl_t ctrl, const char *name, ksba_sexp_t keyid,
|
2017-10-24 17:29:04 +02:00
|
|
|
|
ksba_cert_t *r_cert, int allow_ambiguous);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- keylist.c --*/
|
2006-10-02 13:54:35 +02:00
|
|
|
|
gpg_error_t gpgsm_list_keys (ctrl_t ctrl, strlist_t names,
|
2007-03-19 15:35:04 +01:00
|
|
|
|
estream_t fp, unsigned int mode);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- import.c --*/
|
2009-07-07 18:52:12 +02:00
|
|
|
|
int gpgsm_import (ctrl_t ctrl, int in_fd, int reimport_mode);
|
2003-12-17 18:12:14 +01:00
|
|
|
|
int gpgsm_import_files (ctrl_t ctrl, int nfiles, char **files,
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int (*of)(const char *fname));
|
|
|
|
|
|
|
|
|
|
/*-- export.c --*/
|
2010-03-08 19:19:21 +01:00
|
|
|
|
void gpgsm_export (ctrl_t ctrl, strlist_t names, estream_t stream);
|
2014-06-03 18:57:33 +02:00
|
|
|
|
void gpgsm_p12_export (ctrl_t ctrl, const char *name, estream_t stream,
|
|
|
|
|
int rawmode);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- delete.c --*/
|
2006-10-02 13:54:35 +02:00
|
|
|
|
int gpgsm_delete (ctrl_t ctrl, strlist_t names);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- verify.c --*/
|
2010-03-08 13:22:18 +01:00
|
|
|
|
int gpgsm_verify (ctrl_t ctrl, int in_fd, int data_fd, estream_t out_fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- sign.c --*/
|
2004-04-26 15:29:09 +02:00
|
|
|
|
int gpgsm_get_default_cert (ctrl_t ctrl, ksba_cert_t *r_cert);
|
2006-09-06 18:35:52 +02:00
|
|
|
|
int gpgsm_sign (ctrl_t ctrl, certlist_t signerlist,
|
2010-03-08 13:22:18 +01:00
|
|
|
|
int data_fd, int detached, estream_t out_fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- encrypt.c --*/
|
2010-03-08 13:22:18 +01:00
|
|
|
|
int gpgsm_encrypt (ctrl_t ctrl, certlist_t recplist,
|
|
|
|
|
int in_fd, estream_t out_fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- decrypt.c --*/
|
2010-03-08 13:22:18 +01:00
|
|
|
|
int gpgsm_decrypt (ctrl_t ctrl, int in_fd, estream_t out_fp);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- certreqgen.c --*/
|
2010-03-08 19:19:21 +01:00
|
|
|
|
int gpgsm_genkey (ctrl_t ctrl, estream_t in_stream, estream_t out_stream);
|
2007-06-21 20:44:48 +02:00
|
|
|
|
|
|
|
|
|
/*-- certreqgen-ui.c --*/
|
2010-03-08 19:19:21 +01:00
|
|
|
|
void gpgsm_gencertreq_tty (ctrl_t ctrl, estream_t out_stream);
|
2007-06-21 20:44:48 +02:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
2005-11-13 20:07:06 +01:00
|
|
|
|
/*-- qualified.c --*/
|
2006-03-21 10:56:47 +01:00
|
|
|
|
gpg_error_t gpgsm_is_in_qualified_list (ctrl_t ctrl, ksba_cert_t cert,
|
|
|
|
|
char *country);
|
2005-11-13 20:07:06 +01:00
|
|
|
|
gpg_error_t gpgsm_qualified_consent (ctrl_t ctrl, ksba_cert_t cert);
|
2005-11-23 10:05:45 +01:00
|
|
|
|
gpg_error_t gpgsm_not_qualified_warning (ctrl_t ctrl, ksba_cert_t cert);
|
2005-11-13 20:07:06 +01:00
|
|
|
|
|
2003-08-05 19:11:04 +02:00
|
|
|
|
/*-- call-agent.c --*/
|
2004-04-26 15:29:09 +02:00
|
|
|
|
int gpgsm_agent_pksign (ctrl_t ctrl, const char *keygrip, const char *desc,
|
2003-08-05 19:11:04 +02:00
|
|
|
|
unsigned char *digest,
|
|
|
|
|
size_t digestlen,
|
|
|
|
|
int digestalgo,
|
2005-06-16 10:12:03 +02:00
|
|
|
|
unsigned char **r_buf, size_t *r_buflen);
|
2006-10-11 19:52:15 +02:00
|
|
|
|
int gpgsm_scd_pksign (ctrl_t ctrl, const char *keyid, const char *desc,
|
|
|
|
|
unsigned char *digest, size_t digestlen, int digestalgo,
|
|
|
|
|
unsigned char **r_buf, size_t *r_buflen);
|
2004-04-26 15:29:09 +02:00
|
|
|
|
int gpgsm_agent_pkdecrypt (ctrl_t ctrl, const char *keygrip, const char *desc,
|
2011-02-04 12:57:53 +01:00
|
|
|
|
ksba_const_sexp_t ciphertext,
|
2003-08-05 19:11:04 +02:00
|
|
|
|
char **r_buf, size_t *r_buflen);
|
2004-04-26 15:29:09 +02:00
|
|
|
|
int gpgsm_agent_genkey (ctrl_t ctrl,
|
|
|
|
|
ksba_const_sexp_t keyparms, ksba_sexp_t *r_pubkey);
|
2006-10-11 19:52:15 +02:00
|
|
|
|
int gpgsm_agent_readkey (ctrl_t ctrl, int fromcard, const char *hexkeygrip,
|
2005-07-25 16:35:04 +02:00
|
|
|
|
ksba_sexp_t *r_pubkey);
|
2009-07-02 11:49:31 +02:00
|
|
|
|
int gpgsm_agent_scd_serialno (ctrl_t ctrl, char **r_serialno);
|
|
|
|
|
int gpgsm_agent_scd_keypairinfo (ctrl_t ctrl, strlist_t *r_list);
|
2008-10-21 17:03:51 +02:00
|
|
|
|
int gpgsm_agent_istrusted (ctrl_t ctrl, ksba_cert_t cert, const char *hexfpr,
|
2006-09-25 20:29:20 +02:00
|
|
|
|
struct rootca_flags_s *rootca_flags);
|
2004-04-26 15:29:09 +02:00
|
|
|
|
int gpgsm_agent_havekey (ctrl_t ctrl, const char *hexkeygrip);
|
|
|
|
|
int gpgsm_agent_marktrusted (ctrl_t ctrl, ksba_cert_t cert);
|
|
|
|
|
int gpgsm_agent_learn (ctrl_t ctrl);
|
|
|
|
|
int gpgsm_agent_passwd (ctrl_t ctrl, const char *hexkeygrip, const char *desc);
|
2005-11-13 20:07:06 +01:00
|
|
|
|
gpg_error_t gpgsm_agent_get_confirmation (ctrl_t ctrl, const char *desc);
|
2008-09-30 12:30:20 +02:00
|
|
|
|
gpg_error_t gpgsm_agent_send_nop (ctrl_t ctrl);
|
2009-03-06 18:31:27 +01:00
|
|
|
|
gpg_error_t gpgsm_agent_keyinfo (ctrl_t ctrl, const char *hexkeygrip,
|
|
|
|
|
char **r_serialno);
|
2010-06-17 17:44:44 +02:00
|
|
|
|
gpg_error_t gpgsm_agent_ask_passphrase (ctrl_t ctrl, const char *desc_msg,
|
2010-06-21 12:01:24 +02:00
|
|
|
|
int repeat, char **r_passphrase);
|
2010-06-17 17:44:44 +02:00
|
|
|
|
gpg_error_t gpgsm_agent_keywrap_key (ctrl_t ctrl, int forexport,
|
|
|
|
|
void **r_kek, size_t *r_keklen);
|
|
|
|
|
gpg_error_t gpgsm_agent_import_key (ctrl_t ctrl,
|
|
|
|
|
const void *key, size_t keylen);
|
2010-06-21 12:01:24 +02:00
|
|
|
|
gpg_error_t gpgsm_agent_export_key (ctrl_t ctrl, const char *keygrip,
|
|
|
|
|
const char *desc,
|
|
|
|
|
unsigned char **r_result,
|
|
|
|
|
size_t *r_resultlen);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
/*-- call-dirmngr.c --*/
|
2004-04-05 19:25:21 +02:00
|
|
|
|
int gpgsm_dirmngr_isvalid (ctrl_t ctrl,
|
|
|
|
|
ksba_cert_t cert, ksba_cert_t issuer_cert,
|
2004-03-06 21:11:19 +01:00
|
|
|
|
int use_ocsp);
|
2008-02-13 17:47:14 +01:00
|
|
|
|
int gpgsm_dirmngr_lookup (ctrl_t ctrl, strlist_t names, int cache_only,
|
2003-12-17 13:28:24 +01:00
|
|
|
|
void (*cb)(void*, ksba_cert_t), void *cb_value);
|
2003-12-17 18:12:14 +01:00
|
|
|
|
int gpgsm_dirmngr_run_command (ctrl_t ctrl, const char *command,
|
2003-08-05 19:11:04 +02:00
|
|
|
|
int argc, char **argv);
|
|
|
|
|
|
|
|
|
|
|
2004-04-13 11:45:35 +02:00
|
|
|
|
/*-- misc.c --*/
|
|
|
|
|
void setup_pinentry_env (void);
|
2011-03-01 14:42:56 +01:00
|
|
|
|
gpg_error_t transform_sigval (const unsigned char *sigval, size_t sigvallen,
|
|
|
|
|
int mdalgo,
|
|
|
|
|
unsigned char **r_newsigval,
|
|
|
|
|
size_t *r_newsigvallen);
|
2003-08-05 19:11:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /*GPGSM_H*/
|