Compare commits

...

2 commits

4 changed files with 8 additions and 6 deletions

View file

@ -35,7 +35,8 @@ hickory-client = { version = "0.24.1", optional = true }
tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.39.2", features = ["macros", "rt-multi-thread"] }
[features] [features]
file-sscv = ["dep:dashmap", "tokio/fs"] file-sscv = ["file"]
file = ["dep:dashmap", "tokio/fs"]
dane = ["hickory"] dane = ["hickory"]
hickory = ["dep:hickory-client"] hickory = ["dep:hickory-client"]
@ -51,4 +52,4 @@ path = "examples/simple.rs"
[[example]] [[example]]
name = "main" name = "main"
path = "examples/main.rs" path = "examples/main.rs"
required-features = ["file-sscv", "dane"] required-features = ["file", "dane"]

1
src/certs/file/mod.rs Normal file
View file

@ -0,0 +1 @@
pub mod sscv;

View file

@ -13,8 +13,8 @@ pub struct KnownHostsFile {
impl KnownHostsFile { impl KnownHostsFile {
/// Read or create a known_hosts file at the given path. /// Read or create a known_hosts file at the given path.
/// Format of known_hosts is: _(fields are separated by any space sequence)_ /// Format of known_hosts is: _(fields are separated by any space sequence)_
/// ``` /// ```text
/// #host expires algo base64 fingerprint /// # host expires algo base64 fingerprint
/// dc09.ru 1722930541 sha512 dGVzdHRlc3R0ZXN0Cg /// dc09.ru 1722930541 sha512 dGVzdHRlc3R0ZXN0Cg
/// ``` /// ```
pub async fn parse_file(path: impl AsRef<Path>) -> std::io::Result<KnownHostsFile> { pub async fn parse_file(path: impl AsRef<Path>) -> std::io::Result<KnownHostsFile> {

View file

@ -3,8 +3,8 @@
pub mod fingerprint; pub mod fingerprint;
pub mod verifier; pub mod verifier;
#[cfg(feature = "file-sscv")] #[cfg(feature = "file")]
pub mod file_sscv; pub mod file;
#[cfg(feature = "hickory")] #[cfg(feature = "hickory")]
pub mod dane; pub mod dane;