2001-11-24 19:52:02 +01:00
|
|
|
/* agent.h - Global definitions for the agent
|
|
|
|
* Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AGENT_H
|
|
|
|
#define AGENT_H
|
|
|
|
|
2001-12-06 00:49:07 +01:00
|
|
|
#include <gcrypt.h>
|
2001-11-24 19:52:02 +01:00
|
|
|
#include "../common/util.h"
|
|
|
|
#include "../common/errors.h"
|
|
|
|
|
|
|
|
#define MAX_DIGEST_LEN 24
|
|
|
|
|
|
|
|
/* A large struct name "opt" to keep global flags */
|
|
|
|
struct {
|
|
|
|
unsigned int debug; /* debug flags (DBG_foo_VALUE) */
|
|
|
|
int verbose; /* verbosity level */
|
|
|
|
int quiet; /* be as quiet as possible */
|
|
|
|
int dry_run; /* don't change any persistent data */
|
2001-12-14 16:39:44 +01:00
|
|
|
int batch; /* batch mode */
|
2001-11-24 19:52:02 +01:00
|
|
|
const char *homedir; /* configuration directory name */
|
2001-12-10 10:27:30 +01:00
|
|
|
const char *pinentry_program;
|
|
|
|
|
2001-11-24 19:52:02 +01:00
|
|
|
} opt;
|
|
|
|
|
|
|
|
|
|
|
|
#define DBG_COMMAND_VALUE 1 /* debug commands i/o */
|
|
|
|
#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 */
|
|
|
|
|
|
|
|
#define DBG_COMMAND (opt.debug & DBG_COMMAND_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)
|
|
|
|
|
|
|
|
struct server_local_s;
|
|
|
|
|
|
|
|
struct server_control_s {
|
|
|
|
struct server_local_s *server_local;
|
|
|
|
struct {
|
2001-11-25 15:53:10 +01:00
|
|
|
int algo;
|
2001-11-24 19:52:02 +01:00
|
|
|
unsigned char value[MAX_DIGEST_LEN];
|
|
|
|
int valuelen;
|
|
|
|
} digest;
|
2001-11-25 15:53:10 +01:00
|
|
|
char keygrip[20];
|
2001-12-06 00:49:07 +01:00
|
|
|
int have_keygrip;
|
2001-11-24 19:52:02 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
typedef struct server_control_s *CTRL;
|
|
|
|
|
2001-12-10 10:27:30 +01:00
|
|
|
|
|
|
|
struct pin_entry_info_s {
|
|
|
|
int min_digits; /* min. number of digits required or 0 for freeform entry */
|
|
|
|
int max_digits; /* max. number of allowed digits allowed*/
|
|
|
|
int max_tries;
|
|
|
|
int failed_tries;
|
|
|
|
size_t max_length; /* allocated length of the buffer */
|
|
|
|
char pin[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-11-24 19:52:02 +01:00
|
|
|
/*-- gpg-agent.c --*/
|
|
|
|
void agent_exit (int rc);
|
|
|
|
|
2001-12-10 10:27:30 +01:00
|
|
|
/*-- trans.c --*/
|
|
|
|
const char *trans (const char *text);
|
2001-11-24 19:52:02 +01:00
|
|
|
|
|
|
|
/*-- command.c --*/
|
|
|
|
void start_command_handler (void);
|
|
|
|
|
2001-12-06 00:49:07 +01:00
|
|
|
/*-- findkey.c --*/
|
|
|
|
GCRY_SEXP agent_key_from_file (const unsigned char *grip);
|
|
|
|
|
2001-12-10 10:27:30 +01:00
|
|
|
/*-- query.c --*/
|
|
|
|
int agent_askpin (const char *desc_text, struct pin_entry_info_s *pininfo);
|
2002-01-10 20:45:32 +01:00
|
|
|
int agent_get_passphrase (char **retpass,
|
|
|
|
const char *desc, const char *prompt,
|
|
|
|
const char *errtext);
|
2001-12-06 00:49:07 +01:00
|
|
|
|
2001-11-24 19:52:02 +01:00
|
|
|
/*-- pksign.c --*/
|
|
|
|
int agent_pksign (CTRL ctrl, FILE *outfp);
|
|
|
|
|
2001-12-06 00:49:07 +01:00
|
|
|
/*-- pkdecrypt.c --*/
|
|
|
|
int agent_pkdecrypt (CTRL ctrl, const char *ciphertext, size_t ciphertextlen,
|
|
|
|
FILE *outfp);
|
2001-11-24 19:52:02 +01:00
|
|
|
|
2002-01-10 20:45:32 +01:00
|
|
|
/*-- genkey.c --*/
|
|
|
|
int agent_genkey (CTRL ctrl,
|
|
|
|
const char *keyparam, size_t keyparmlen, FILE *outfp);
|
|
|
|
|
|
|
|
|
2001-11-24 19:52:02 +01:00
|
|
|
|
|
|
|
#endif /*AGENT_H*/
|