Interface SecretKeyBackupSelectionCallback
-
public interface SecretKeyBackupSelectionCallback
Callback to allow the user to decide, which locally available secret keys they want to include in a backup.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<org.pgpainless.key.OpenPgpV4Fingerprint>
selectKeysToBackup(java.util.Set<org.pgpainless.key.OpenPgpV4Fingerprint> availableSecretKeys)
Let the user decide, which secret keys they want to backup.
-
-
-
Method Detail
-
selectKeysToBackup
java.util.Set<org.pgpainless.key.OpenPgpV4Fingerprint> selectKeysToBackup(java.util.Set<org.pgpainless.key.OpenPgpV4Fingerprint> availableSecretKeys)
Let the user decide, which secret keys they want to backup.- Parameters:
availableSecretKeys
-Set
ofOpenPgpV4Fingerprint
s of locally available OpenPGP secret keys.- Returns:
Set
which contains theOpenPgpV4Fingerprint
s the user decided to include in the backup.
-
-