diff options
| author | Lionel Flandrin <[email protected]> | 2016-10-31 23:55:00 +0100 |
|---|---|---|
| committer | Lionel Flandrin <[email protected]> | 2016-11-01 21:23:18 +0100 |
| commit | 8d0090faecea5dbcbf87a0446beb2e60828378bc (patch) | |
| tree | efa605236cbd01e524d4269c66858546cf8cdb21 /openssl-sys/src/ossl110.rs | |
| parent | Replace GeneralNames by the new Stack API (diff) | |
| download | rust-openssl-8d0090faecea5dbcbf87a0446beb2e60828378bc.tar.xz rust-openssl-8d0090faecea5dbcbf87a0446beb2e60828378bc.zip | |
Implement X509StoreContextRef::get_chain
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 7d31b687..1b0d9f34 100644 --- a/openssl-sys/src/ossl110.rs +++ b/openssl-sys/src/ossl110.rs @@ -141,6 +141,7 @@ extern { pub fn X509_up_ref(x: *mut X509) -> c_int; pub fn SSL_CTX_up_ref(x: *mut SSL_CTX) -> c_int; pub fn X509_get0_extensions(req: *const ::X509) -> *const stack_st_X509_EXTENSION; + pub fn X509_STORE_CTX_get0_chain(ctx: *mut ::X509_STORE_CTX) -> *mut stack_st_X509; pub fn EVP_MD_CTX_new() -> *mut EVP_MD_CTX; pub fn EVP_MD_CTX_free(ctx: *mut EVP_MD_CTX); |