The user is now shown if the password used to encrypt the secret key is stored in the system keyring.
MKBMOM4T2ZBD27ECEHEZXAMPIX25DQKQUHIBYWECRFV73NVTVCFAC
match encryption {
libpijul::key::Encryption::Aes128(_) => "AES 128-bit",
}
format!(
"{} (Stored in keyring: {})",
match encryption {
libpijul::key::Encryption::Aes128(_) => "AES 128-bit",
},
keyring::Entry::new("pijul", &identity.name)
.get_password()
.is_ok()
)