diff options
author | Werner Koch <[email protected]> | 2017-01-23 09:12:18 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-01-23 09:13:26 +0000 |
commit | 953d4ec6afd1b42feb7465ee57e48d72f033019a (patch) | |
tree | e780e1c959be23492920d65b2ad76f1b4b2574b8 /g10/options.h | |
parent | scd: Fix INTERRUPT transfer. (diff) | |
download | gnupg-953d4ec6afd1b42feb7465ee57e48d72f033019a.tar.gz gnupg-953d4ec6afd1b42feb7465ee57e48d72f033019a.zip |
gpg: New export and import options "backup" and "restore".
* g10/export.c (parse_export_options): Add "backup" and its alias
"export-backup".
(do_export_one_keyblock): Export ring trust packets in backup mode.
* g10/import.c (parse_import_options): Add "restore" and its alias
"import-restore".
(read_block): Import ring trust packets.
--
These options are intended to, well, backup and restore keys between
GnuPG implementations. These options may eventually be enhanced to
backup and restore all public key related information.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/options.h')
-rw-r--r-- | g10/options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/options.h b/g10/options.h index 589b68e1e..88a8f32bd 100644 --- a/g10/options.h +++ b/g10/options.h @@ -349,6 +349,7 @@ EXTERN_UNLESS_MAIN_MODULE int memory_stat_debug_mode; #define IMPORT_NO_SECKEY (1<<7) #define IMPORT_KEEP_OWNERTTRUST (1<<8) #define IMPORT_EXPORT (1<<9) +#define IMPORT_RESTORE (1<<10) #define EXPORT_LOCAL_SIGS (1<<0) #define EXPORT_ATTRIBUTES (1<<1) @@ -358,6 +359,7 @@ EXTERN_UNLESS_MAIN_MODULE int memory_stat_debug_mode; #define EXPORT_CLEAN (1<<5) #define EXPORT_PKA_FORMAT (1<<6) #define EXPORT_DANE_FORMAT (1<<7) +#define EXPORT_BACKUP (1<<10) #define LIST_SHOW_PHOTOS (1<<0) #define LIST_SHOW_POLICY_URLS (1<<1) |