Skip to content
Snippets Groups Projects
Commit 0d4c53bb authored by Ian Jackson's avatar Ian Jackson :speech_balloon:
Browse files

Merge branch 'experimental-v3ident-public' into 'main'

Authority: make v3ident public under experimental-api

See merge request tpo/core/arti!463
parents 174883ee 08bce9b6
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,12 @@ pub struct Authority {
/// A SHA1 digest of the DER-encoded long-term v3 RSA identity key for
/// this authority.
// TODO: It would be lovely to use a better hash for these identities.
#[cfg(not(feature = "experimental-api"))]
pub(crate) v3ident: RsaIdentity,
#[cfg(feature = "experimental-api")]
/// A SHA1 digest of the DER-encoded long-term v3 RSA identity key for
/// this authority.
pub v3ident: RsaIdentity,
}
impl Authority {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment