diff options
author | Werner Koch <[email protected]> | 2025-01-29 15:32:03 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2025-01-29 15:32:03 +0000 |
commit | 89055f24f4d3d645e1ac79b64421849e08a1c2a2 (patch) | |
tree | 426c1e802fd5392b5687ac4118db966d0b28b80d /doc/gpgsm.texi | |
parent | agent: Fix ssh-agent's request_identities for skipped keys. (diff) | |
download | gnupg-89055f24f4d3d645e1ac79b64421849e08a1c2a2.tar.gz gnupg-89055f24f4d3d645e1ac79b64421849e08a1c2a2.zip |
gpgsm: Allow CSR generation with an unprotected key.
* sm/call-agent.c (gpgsm_agent_genkey): Add arg no_protection.
* sm/certreqgen.c (struct reqgen_ctrl_s): Add field no_protection.
(read_parameters): Add keyword "%no-protection".
(proc_parameters): Pass no_protection to gpgsm_agent_genkey.
Diffstat (limited to '')
-rw-r--r-- | doc/gpgsm.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/gpgsm.texi b/doc/gpgsm.texi index dd0daf642..3f86d0c44 100644 --- a/doc/gpgsm.texi +++ b/doc/gpgsm.texi @@ -1179,6 +1179,9 @@ Print @var{text} as diagnostic. @item %dry-run Suppress actual key generation (useful for syntax checking). +@item %no-protection +Creates the private key without a passphrase. + @item %commit Perform the key generation. Note that an implicit commit is done at the next @asis{Key-Type} parameter. |