chore: pubkey,keyhandle output no hex

This commit is contained in:
2021-07-03 11:39:43 +08:00
parent 70a3fa31fb
commit c053c53fbb

View File

@@ -74,8 +74,8 @@ impl Command for CommandImpl {
if let Some(device_name) = data.device_name {
success!("Device name: {}", device_name);
}
success!("Public key: {}", hex::encode(data.pub_key));
success!("Key handle: {}", hex::encode(data.key_handle));
success!("Public key: {}", data.pub_key);
success!("Key handle: {}", data.key_handle);
}
}
Err(e) => {