1 /* call-agent.h - Divert operations to the agent
2 * Copyright (C) 2003 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #ifndef GNUPG_G10_CALL_AGENT_H
20 #define GNUPG_G10_CALL_AGENT_H
23 struct agent_card_info_s
25 int error
; /* private. */
26 char *serialno
; /* malloced hex string. */
27 char *disp_name
; /* malloced. */
28 char *disp_lang
; /* malloced. */
29 int disp_sex
; /* 0 = unspecified, 1 = male, 2 = female */
30 char *pubkey_url
; /* malloced. */
31 char *login_data
; /* malloced. */
32 char *private_do
[4]; /* malloced. */
48 unsigned long sig_counter
;
49 int chv1_cached
; /* True if a PIN is not required for each
50 signing. Note that the gpg-agent might cache
52 int is_v2
; /* True if this is a v2 card. */
53 int chvmaxlen
[3]; /* Maximum allowed length of a CHV. */
54 int chvretry
[3]; /* Allowed retries for the CHV; 0 = blocked. */
57 struct agent_card_genkey_s
{
66 /* Release the card info structure. */
67 void agent_release_card_info (struct agent_card_info_s
*info
);
69 /* Return card info. */
70 int agent_learn (struct agent_card_info_s
*info
);
72 /* Update INFO with the attribute NAME. */
73 int agent_scd_getattr (const char *name
, struct agent_card_info_s
*info
);
75 /* Send a SETATTR command to the SCdaemon. */
76 int agent_scd_setattr (const char *name
,
77 const unsigned char *value
, size_t valuelen
,
78 const char *serialno
);
80 /* Send a WRITECERT command to the SCdaemon. */
81 int agent_scd_writecert (const char *certidstr
,
82 const unsigned char *certdata
, size_t certdatalen
);
84 /* Send a WRITEKEY command to the SCdaemon. */
85 int agent_scd_writekey (int keyno
, const char *serialno
,
86 const unsigned char *keydata
, size_t keydatalen
);
88 /* Send a GENKEY command to the SCdaemon. */
89 int agent_scd_genkey (struct agent_card_genkey_s
*info
, int keyno
, int force
,
90 const char *serialno
, u32 createtime
);
92 /* Send a PKSIGN command to the SCdaemon. */
93 int agent_scd_pksign (const char *keyid
, int hashalgo
,
94 const unsigned char *indata
, size_t indatalen
,
95 unsigned char **r_buf
, size_t *r_buflen
);
97 /* Send a PKDECRYPT command to the SCdaemon. */
98 int agent_scd_pkdecrypt (const char *serialno
,
99 const unsigned char *indata
, size_t indatalen
,
100 unsigned char **r_buf
, size_t *r_buflen
);
102 /* Change the PIN of an OpenPGP card or reset the retry counter. */
103 int agent_scd_change_pin (int chvno
, const char *serialno
);
105 /* Send the CHECKPIN command to the SCdaemon. */
106 int agent_scd_checkpin (const char *serialno
);
108 /* Dummy function, only implemented by gpg 1.4. */
109 void agent_clear_pin_cache (const char *sn
);
112 /* Send the GET_PASSPHRASE command to the agent. */
113 gpg_error_t
agent_get_passphrase (const char *cache_id
,
116 const char *desc_msg
,
117 char **r_passphrase
);
119 /* Send the CLEAR_PASSPHRASE command to the agent. */
120 gpg_error_t
agent_clear_passphrase (const char *cache_id
);
123 #endif /*GNUPG_G10_CALL_AGENT_H*/