mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: New option --force-aead
* g10/dek.h (DEK): Turn fields use_mdc, algo_printed and symmetric into single bit vars. Make sure they are always set to 1 or 0. (DEK): New field use_aead. * g10/options.h (struct opt): New field force_aead. * g10/pkclist.c (select_aead_from_pklist): New. * g10/gpg.c (oForceAEAD): New const. (opts): New options "--force-aead". (main): Set new option. * g10/encrypt.c (use_aead): New. (encrypt_simple): Implement new flags DEK.use_aead. (encrypt_crypt): Ditto. (encrypt_filter): Ditto. * g10/sign.c (sign_symencrypt_file): Ditto. -- This patch should be enough to detect whether AEAD can be used. Not tested. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
8217cd4936
commit
4e2ba546cd
8 changed files with 120 additions and 20 deletions
|
@ -1337,7 +1337,10 @@ sign_symencrypt_file (ctrl_t ctrl, const char *fname, strlist_t locusr)
|
|||
goto leave;
|
||||
}
|
||||
|
||||
cfx.dek->use_mdc = use_mdc (NULL, cfx.dek->algo);
|
||||
if (use_aead (NULL, cfx.dek->algo))
|
||||
cfx.dek->use_aead = 1;
|
||||
else
|
||||
cfx.dek->use_mdc = !!use_mdc (NULL, cfx.dek->algo);
|
||||
|
||||
/* now create the outfile */
|
||||
rc = open_outfile (-1, fname, opt.armor? 1:0, 0, &out);
|
||||
|
@ -1381,7 +1384,7 @@ sign_symencrypt_file (ctrl_t ctrl, const char *fname, strlist_t locusr)
|
|||
/* Push the compress filter */
|
||||
if (default_compress_algo())
|
||||
{
|
||||
if (cfx.dek && cfx.dek->use_mdc)
|
||||
if (cfx.dek && (cfx.dek->use_mdc || cfx.dek->use_aead))
|
||||
zfx.new_ctb = 1;
|
||||
push_compress_filter (out, &zfx,default_compress_algo() );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue