Fingerprint: add new signature method
commit c42a54795d
introcuded a bug by
using fp.to_string(). Replace this with fp.signature() which correctly
returns the full fingerprint instead of the short version.
Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
parent
94a6b33680
commit
ca6e66aa5a
|
@ -33,6 +33,9 @@ impl Fingerprint {
|
|||
pub fn bytes(&self) -> &[u8; 32] {
|
||||
&self.bytes
|
||||
}
|
||||
pub fn signature(&self) -> String {
|
||||
as_fingerprint(&self.bytes)
|
||||
}
|
||||
}
|
||||
|
||||
/// Display as short key ID
|
||||
|
|
|
@ -100,7 +100,7 @@ impl From<&KeyConfig> for KeyInfo {
|
|||
fingerprint: key_config
|
||||
.fingerprint
|
||||
.as_ref()
|
||||
.map(|fp| fp.to_string()),
|
||||
.map(|fp| fp.signature()),
|
||||
hint: key_config.hint.clone(),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -190,5 +190,5 @@ pub fn complete_key_fingerprint(_arg: &str, _param: &HashMap<String, String>) ->
|
|||
Err(_) => return Vec::new(),
|
||||
};
|
||||
|
||||
data.keys().map(|fp| fp.to_string()).collect()
|
||||
data.keys().map(|fp| fp.signature()).collect()
|
||||
}
|
||||
|
|
|
@ -696,7 +696,7 @@ pub async fn read_label(
|
|||
flat.encryption_key_fingerprint = set
|
||||
.encryption_key_fingerprint
|
||||
.as_ref()
|
||||
.map(|fp| fp.to_string());
|
||||
.map(|fp| fp.signature());
|
||||
|
||||
let encrypt_fingerprint = set.encryption_key_fingerprint.clone()
|
||||
.map(|fp| (fp, set.uuid.clone()));
|
||||
|
|
|
@ -317,7 +317,7 @@ impl TapeDriver for LtoTapeHandle {
|
|||
}
|
||||
|
||||
let output = if let Some((fingerprint, uuid)) = key_fingerprint {
|
||||
let fingerprint = fingerprint.to_string();
|
||||
let fingerprint = fingerprint.signature();
|
||||
run_sg_tape_cmd("encryption", &[
|
||||
"--fingerprint", &fingerprint,
|
||||
"--uuid", &uuid.to_string(),
|
||||
|
|
Loading…
Reference in New Issue