Print ODoH DNS stamps

This commit is contained in:
Frank Denis 2021-06-12 14:00:24 +02:00
parent a988eb42a2
commit 4f1e0f2abe
2 changed files with 14 additions and 3 deletions

View file

@ -18,7 +18,7 @@ tls = ["libdoh/tls"]
[dependencies]
libdoh = { path = "src/libdoh", version = "0.4.0", default-features = false }
clap = "2.33.3"
dnsstamps = "0.1.5"
dnsstamps = "0.1.7"
jemallocator = "0.3.2"
[package.metadata.deb]

View file

@ -207,10 +207,21 @@ pub fn parse_opts(globals: &mut Globals) {
builder = builder.with_address(public_address.to_string());
}
println!(
"Test DNS stamp to reach [{}]: [{}]",
"Test DNS stamp to reach [{}] over DoH: [{}]\n",
hostname,
builder.serialize().unwrap()
);
println!("Check out https://dnscrypt.info/stamps/ to compute the actual stamp.\n")
let builder =
dnsstamps::ODoHTargetBuilder::new(hostname.to_string(), globals.path.to_string());
println!(
"Test DNS stamp to reach [{}] over Oblivious DoH: [{}]\n",
hostname,
builder.serialize().unwrap()
);
println!("Check out https://dnscrypt.info/stamps/ to compute the actual stamps.\n")
} else {
println!("Please provide a fully qualified hostname (-H <hostname> command-line option) to get test DNS stamps for your server.\n");
}
}