File tree 3 files changed +4
-1
lines changed
openssl-sys/src/handwritten 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,8 @@ extern "C" {
212
212
213
213
pub fn X509_ALGOR_new ( ) -> * mut X509_ALGOR ;
214
214
pub fn X509_ALGOR_free ( x : * mut X509_ALGOR ) ;
215
+
216
+ #[ cfg( ossl110) ]
215
217
pub fn X509_ALGOR_set_md ( alg : * mut X509_ALGOR , md : * const EVP_MD ) ;
216
218
217
219
pub fn X509_ALGOR_cmp ( alg0 : * const X509_ALGOR , alg1 : * const X509_ALGOR ) -> c_int ;
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ pub mod ssl;
193
193
pub mod stack;
194
194
pub mod string;
195
195
pub mod symm;
196
- #[ cfg( not( boringssl) ) ]
196
+ #[ cfg( all ( not( boringssl) , not ( libressl ) ) ) ]
197
197
pub mod ts;
198
198
pub mod version;
199
199
pub mod x509;
Original file line number Diff line number Diff line change @@ -2291,6 +2291,7 @@ impl X509AlgorithmRef {
2291
2291
}
2292
2292
}
2293
2293
2294
+ #[ cfg( ossl110) ]
2294
2295
#[ corresponds( X509_ALGOR_set_md ) ]
2295
2296
pub fn set_md ( & mut self , md : MessageDigest ) {
2296
2297
unsafe {
You can’t perform that action at this time.
0 commit comments