diff options
| author | Werner Koch <[email protected]> | 2021-08-27 10:05:50 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2021-08-27 10:06:57 +0000 |
| commit | ad3dabc9fb64372ffcb31916b32506956a89eea9 (patch) | |
| tree | 5c3699ebf6f5668bf2c18a2f5af9154ab5561ad1 /g10/gpg.c | |
| parent | kbx: Fix checksum computation for no UBID entry on disk. (diff) | |
| download | gnupg-ad3dabc9fb64372ffcb31916b32506956a89eea9.tar.gz gnupg-ad3dabc9fb64372ffcb31916b32506956a89eea9.zip | |
gpg: Change default and max AEAD chunk size to 4 MiB
--
This is per OpenPGP WG design team decision from 2021-08-13
(raising a new wall after exactly 60 years ;-)
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/gpg.c')
| -rw-r--r-- | g10/gpg.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3974,15 +3974,15 @@ main (int argc, char **argv) /* Check chunk size. Please fix also the man page if you change * the default. The limits are given by the specs. */ if (!opt.chunk_size) - opt.chunk_size = 27; /* Default to the suggested max of 128 MiB. */ + opt.chunk_size = 22; /* Default to the suggested max of 4 MiB. */ else if (opt.chunk_size < 6) { opt.chunk_size = 6; log_info (_("chunk size invalid - using %d\n"), opt.chunk_size); } - else if (opt.chunk_size > (allow_large_chunks? 62 : 27)) + else if (opt.chunk_size > (allow_large_chunks? 62 : 22)) { - opt.chunk_size = (allow_large_chunks? 62 : 27); + opt.chunk_size = (allow_large_chunks? 62 : 22); log_info (_("chunk size invalid - using %d\n"), opt.chunk_size); } |
