Fix compile failure

This commit is contained in:
Bruce Leidl 2019-04-02 16:12:41 -04:00
parent 3148825680
commit fab4106302

View File

@ -3,7 +3,7 @@ use std::process::exit;
use clap::{App,Arg,SubCommand,ArgMatches}; use clap::{App,Arg,SubCommand,ArgMatches};
use clap::AppSettings::*; use clap::AppSettings::*;
use libcitadel::{Result,ResourceImage,Logger,LogLevel,format_error,Partition,KeyPair,ImageHeader,devkeys}; use libcitadel::{Result,ResourceImage,Logger,LogLevel,format_error,Partition,KeyPair,ImageHeader};
use std::fs; use std::fs;
use hex; use hex;
@ -270,9 +270,8 @@ fn rotate(path: &Path) -> Result<()> {
} }
fn genkeys() -> Result<()> { fn genkeys() -> Result<()> {
let keypair = KeyPair::generate()?; let keypair = KeyPair::generate();
println!("public-key = \"{}\"", keypair.public_key().to_hex()); println!("keypair = \"{}\"", keypair.to_hex());
println!("private-key = \"{}\"", keypair.private_key_hex());
Ok(()) Ok(())
} }