Skip to content
Snippets Groups Projects

Bug 1612: Add optional HsIdKeypair to OnionServiceConfig

Closed morgan requested to merge morgan/arti:bug_1612 into main
Files
8
@@ -371,6 +371,20 @@ impl HsIdKeypair {
}
}
impl Clone for HsIdKeypair {
fn clone(&self) -> Self {
Self(self.0.clone())
}
}
impl std::cmp::PartialEq for HsIdKeypair {
fn eq(&self, other: &Self) -> bool {
self.0.eq(&other.0)
}
}
impl std::cmp::Eq for HsIdKeypair {}
define_pk_keypair! {
/// The "blinded" identity of a v3 onion service. (`KP_hs_blind_id`)
///
Loading