Add CLI interface for the signing key

- 'signkey set' sets a new signing key (disables an old one if
  existing).
- 'signkey show' prints the fingerprint.
- 'signkey dump' prints the certificate of the signing key.
This commit is contained in:
Malte Meiboom
2026-06-13 14:37:37 +02:00
parent 7547776efe
commit 06c0583f5e
8 changed files with 207 additions and 25 deletions
+1 -3
View File
@@ -83,8 +83,7 @@ impl Introducer {
cert,
crypto::Role::Introducer,
true,
Some(domains),
None)
Some(domains))
}
/// Remove an introducer.
@@ -102,7 +101,6 @@ impl Introducer {
cert,
crypto::Role::Introducer,
false,
None,
None)
}
}