diff options
| author | Werner Koch <[email protected]> | 2020-08-17 12:21:00 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2020-08-17 13:05:49 +0000 |
| commit | 0da923a1240ac78d60c92cdd8488c4e405c3243b (patch) | |
| tree | 106ce6faa60a206478752cb21096cc29b4e90d15 /agent/agent.h | |
| parent | Add --chuid to gpg, gpg-card, and gpg-connect-agent. (diff) | |
| download | gnupg-0da923a1240ac78d60c92cdd8488c4e405c3243b.tar.gz gnupg-0da923a1240ac78d60c92cdd8488c4e405c3243b.zip | |
agent: Allow to pass a timestamp to genkey and import.
* agent/command.c (cmd_genkey): Add option --timestamp.
(cmd_import_key): Ditto.
* agent/genkey.c (store_key): Add arg timestamp and change callers.
(agent_genkey): Ditto.
* agent/findkey.c (write_extended_private_key): Add args timestamp and
new key to write a Created line.
(agent_write_private_key): Add arg timestamp.
(agent_write_shadow_key): Ditto.
agent/protect-tool.c (agent_write_private_key): Ditto as dummy arg.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'agent/agent.h')
| -rw-r--r-- | agent/agent.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/agent/agent.h b/agent/agent.h index 7f18eb601..25d9e2d29 100644 --- a/agent/agent.h +++ b/agent/agent.h @@ -442,7 +442,8 @@ gpg_error_t agent_modify_description (const char *in, const char *comment, const gcry_sexp_t key, char **result); int agent_write_private_key (const unsigned char *grip, const void *buffer, size_t length, int force, - const char *serialno, const char *keyref); + const char *serialno, const char *keyref, + time_t timestamp); gpg_error_t agent_key_from_file (ctrl_t ctrl, const char *cache_nonce, const char *desc_text, @@ -522,7 +523,7 @@ int check_passphrase_constraints (ctrl_t ctrl, const char *pw, int no_empty, char **failed_constraint); gpg_error_t agent_ask_new_passphrase (ctrl_t ctrl, const char *prompt, char **r_passphrase); -int agent_genkey (ctrl_t ctrl, const char *cache_nonce, +int agent_genkey (ctrl_t ctrl, const char *cache_nonce, time_t timestamp, const char *keyparam, size_t keyparmlen, int no_protection, const char *override_passphrase, int preset, membuf_t *outbuf); |
