fix Pk size check (#361)

* more descriptive error

* fix key size check
This commit is contained in:
Paolo Asperti
2024-01-31 04:21:00 +01:00
committed by GitHub
parent 778c89efb1
commit 94ae51458c
2 changed files with 3 additions and 3 deletions

View File

@@ -1174,9 +1174,6 @@ impl RendezvousServer {
let mut tmp = [0u8; sign::SECRETKEYBYTES];
tmp[..].copy_from_slice(&sk);
out_sk = Some(sign::SecretKey(tmp));
} else {
log::error!("Malformed private key");
std::process::exit(1);
}
}