File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ impl MessageDigest {
70
70
///
71
71
/// [`EVP_get_digestbynid`]: https://www.openssl.org/docs/manmaster/crypto/EVP_DigestInit.html
72
72
pub fn from_nid ( type_ : Nid ) -> Option < MessageDigest > {
73
+ ffi:: init ( ) ;
73
74
unsafe {
74
75
let ptr = ffi:: EVP_get_digestbynid ( type_. as_raw ( ) ) ;
75
76
if ptr. is_null ( ) {
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ impl Md {
80
80
/// Returns the `Md` corresponding to an [`Nid`].
81
81
#[ corresponds( EVP_get_digestbynid ) ]
82
82
pub fn from_nid ( type_ : Nid ) -> Option < & ' static MdRef > {
83
+ ffi:: init ( ) ;
83
84
unsafe {
84
85
let ptr = ffi:: EVP_get_digestbynid ( type_. as_raw ( ) ) ;
85
86
if ptr. is_null ( ) {
@@ -100,6 +101,7 @@ impl Md {
100
101
algorithm : & str ,
101
102
properties : Option < & str > ,
102
103
) -> Result < Self , ErrorStack > {
104
+ ffi:: init ( ) ;
103
105
let algorithm = CString :: new ( algorithm) . unwrap ( ) ;
104
106
let properties = properties. map ( |s| CString :: new ( s) . unwrap ( ) ) ;
105
107
You can’t perform that action at this time.
0 commit comments