diff options
| author | Steven Fackler <[email protected]> | 2017-02-10 19:59:11 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2017-02-10 19:59:11 -0800 |
| commit | 8e5735d84c43cfc2a18c1178893eedf9b8373e8e (patch) | |
| tree | a5c60ad57b8ac2f3c7fbfcd34ef90e175ba9a110 /openssl-sys/src/ossl110.rs | |
| parent | Add Asn1BitString (diff) | |
| download | rust-openssl-8e5735d84c43cfc2a18c1178893eedf9b8373e8e.tar.xz rust-openssl-8e5735d84c43cfc2a18c1178893eedf9b8373e8e.zip | |
X509 signature access
Diffstat (limited to 'openssl-sys/src/ossl110.rs')
| -rw-r--r-- | openssl-sys/src/ossl110.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-sys/src/ossl110.rs b/openssl-sys/src/ossl110.rs index b7fdebab..7cabac50 100644 --- a/openssl-sys/src/ossl110.rs +++ b/openssl-sys/src/ossl110.rs @@ -127,6 +127,7 @@ extern { pub fn SSL_CTX_clear_options(ctx: *mut ::SSL_CTX, op: c_ulong) -> c_ulong; pub fn X509_getm_notAfter(x: *const ::X509) -> *mut ::ASN1_TIME; pub fn X509_getm_notBefore(x: *const ::X509) -> *mut ::ASN1_TIME; + pub fn X509_get0_signature(psig: *mut *const ::ASN1_BIT_STRING, palg: *mut *const ::X509_ALGOR, x: *const ::X509); pub fn DH_set0_pqg(dh: *mut ::DH, p: *mut ::BIGNUM, q: *mut ::BIGNUM, |