Clean up old debugging infrastructure.

This commit is contained in:
2019-03-05 16:12:25 -07:00
parent f1f39f8b5f
commit 91d595ee4b
4 changed files with 1 additions and 40 deletions

View File

@@ -36,15 +36,6 @@ pub enum RSAPrivate {
Key15360(RSA15360Private)
}
// fn print_vector(name: &'static str, bytes: &[u8])
// {
// print!("{}: (length {}) ", name, bytes.len());
// for x in bytes.iter() {
// print!("{:02X}", *x);
// }
// println!("");
// }
macro_rules! generate_rsa_private
{
($rsa: ident, $num: ident, $bar: ident, $size: expr) => {