Fix visibility of Signer::new_intern

This commit is contained in:
Steven Fackler 2020-02-03 16:18:23 +00:00 committed by GitHub
parent 61d5a1e38d
commit 972c7ae11a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ impl<'a> Signer<'a> {
Self::new_intern(None, pkey)
}
pub fn new_intern<T>(
fn new_intern<T>(
type_: Option<MessageDigest>,
pkey: &'a PKeyRef<T>,
) -> Result<Signer<'a>, ErrorStack>