Start milestone 3

- Add functionality to query online sources (Keyservers, etc) for
  certificates.
- Use introducers to determine which UserIDs should be fetched from
  online soources. Check certifications before importing certifiactes
  into the local cert store.
- start docker image for local end-to-end testing.
This commit is contained in:
Malte Meiboom
2026-01-23 12:57:26 +01:00
parent 4270bf4ceb
commit 30b1d29274
23 changed files with 685 additions and 10 deletions
+10
View File
@@ -14,6 +14,7 @@ pub struct HuskConfig {
pub connection: String,
pub sequoia_home: String,
logfile_config: Option<String>,
pub keyservers: Option<Vec<String>>,
}
impl HuskConfig {
@@ -43,6 +44,15 @@ impl HuskConfig {
},
}
}
pub fn get_keyservers(&self) -> Vec<String> {
if let Some(kss) = &self.keyservers {
kss.clone()
} else {
Vec::new()
}
}
}
pub type HuskConfigContainer = Arc<Mutex<HuskConfig>>;