Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Firstyear committed Dec 31, 2023
1 parent f960b8f commit e40a148
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fido-key-manager/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ async fn main() {
match &public_key.key {
COSEKeyType::EC_OKP(okp) => {
println!(" Octet key pair, curve {:?}", okp.curve);
println!(" X-coordinate: {}", hex::encode(okp.x));
println!(" X-coordinate: {}", hex::encode(&okp.x.0));
}
COSEKeyType::EC_EC2(ec) => {
println!(" Elliptic curve key, curve {:?}", ec.curve);
Expand Down

0 comments on commit e40a148

Please sign in to comment.