mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
rage-keygen: Print recipient to terminal after writing identity file
This ensures that if we cannot write the identity file (for example, if the file already exists), we don't output a recipient that cannot be used (because its identity was lost).
This commit is contained in:
parent
4ec6fb6312
commit
95c2570c99
1 changed files with 7 additions and 5 deletions
|
@ -76,10 +76,6 @@ fn main() -> Result<(), error::Error> {
|
|||
let pk = sk.to_public();
|
||||
|
||||
(|| {
|
||||
if !output.is_terminal() {
|
||||
eprintln!("{}: {}", fl!("tty-pubkey"), pk);
|
||||
}
|
||||
|
||||
writeln!(
|
||||
output,
|
||||
"# {}: {}",
|
||||
|
@ -87,7 +83,13 @@ fn main() -> Result<(), error::Error> {
|
|||
chrono::Local::now().to_rfc3339_opts(chrono::SecondsFormat::Secs, true)
|
||||
)?;
|
||||
writeln!(output, "# {}: {}", fl!("identity-file-pubkey"), pk)?;
|
||||
writeln!(output, "{}", sk.to_string().expose_secret())
|
||||
writeln!(output, "{}", sk.to_string().expose_secret())?;
|
||||
|
||||
if !output.is_terminal() {
|
||||
eprintln!("{}: {}", fl!("tty-pubkey"), pk);
|
||||
}
|
||||
|
||||
Ok(())
|
||||
})()
|
||||
.map_err(error::Error::FailedToWriteOutput)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue