mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
agent: New option --auto-expand-secmem.
* agent/gpg-agent.c (oAutoExpandSecmem): New enum value. (opts): New option --auto-expand-secmem. (main): Implement that option. -- Note that this option has an effect only if Libgcrypt >= 1.8.2 is used. GnuPG-bug-id: 3530
This commit is contained in:
parent
531182b7f8
commit
18af15249d
2 changed files with 22 additions and 0 deletions
|
@ -135,6 +135,7 @@ enum cmd_and_opt_values
|
|||
oDisableScdaemon,
|
||||
oDisableCheckOwnSocket,
|
||||
oS2KCount,
|
||||
oAutoExpandSecmem,
|
||||
|
||||
oWriteEnvFile
|
||||
};
|
||||
|
@ -252,6 +253,8 @@ static ARGPARSE_OPTS opts[] = {
|
|||
|
||||
ARGPARSE_s_u (oS2KCount, "s2k-count", "@"),
|
||||
|
||||
ARGPARSE_op_u (oAutoExpandSecmem, "auto-expand-secmem", "@"),
|
||||
|
||||
/* Dummy options for backward compatibility. */
|
||||
ARGPARSE_o_s (oWriteEnvFile, "write-env-file", "@"),
|
||||
ARGPARSE_s_n (oUseStandardSocket, "use-standard-socket", "@"),
|
||||
|
@ -1233,6 +1236,14 @@ main (int argc, char **argv )
|
|||
socket_name_browser = pargs.r.ret_str;
|
||||
break;
|
||||
|
||||
case oAutoExpandSecmem:
|
||||
/* Try to enable this option. It will officially only be
|
||||
* supported by Libgcrypt 1.9 but 1.8.2 already supports it
|
||||
* on the quiet and thus we use the numeric value value. */
|
||||
gcry_control (78 /*GCRYCTL_AUTO_EXPAND_SECMEM*/,
|
||||
(unsigned int)pargs.r.ret_ulong, 0);
|
||||
break;
|
||||
|
||||
case oDebugQuickRandom:
|
||||
/* Only used by the first stage command line parser. */
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue