We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef70768 commit fdf30d5Copy full SHA for fdf30d5
openssl-sys/src/handwritten/x509.rs
@@ -213,7 +213,7 @@ extern "C" {
213
pub fn X509_ALGOR_new() -> *mut X509_ALGOR;
214
pub fn X509_ALGOR_free(x: *mut X509_ALGOR);
215
216
- #[cfg(ossl110)]
+ #[cfg(ossl101)]
217
pub fn X509_ALGOR_set_md(alg: *mut X509_ALGOR, md: *const EVP_MD);
218
219
pub fn X509_ALGOR_cmp(alg0: *const X509_ALGOR, alg1: *const X509_ALGOR) -> c_int;
openssl/src/x509/mod.rs
@@ -2291,7 +2291,7 @@ impl X509AlgorithmRef {
2291
}
2292
2293
2294
2295
#[corresponds(X509_ALGOR_set_md)]
2296
pub fn set_md(&mut self, md: MessageDigest) {
2297
unsafe {
0 commit comments