Commit 0d4c53bb authored by Ian Jackson's avatar Ian Jackson 💬
Browse files

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

Authority: make v3ident public under experimental-api

See merge request !463
parents 174883ee 08bce9b6
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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 {