fix fingerprint return

This commit is contained in:
Keagan McClelland
2021-09-20 12:43:28 -06:00
committed by Aiden McClelland
parent 25cf20dee3
commit 1fa97164ea

View File

@@ -140,7 +140,7 @@ pub async fn list(
.map(|r| {
let k = PubKey(r.openssh_pubkey.parse().unwrap()).0;
let alg = k.keytype().to_owned();
let fingerprint = k.fingerprint();
let fingerprint = k.fingerprint_md5();
let hostname = k.comment.unwrap_or("".to_owned());
let created_at = r.created_at;
SshKeyResponse {