aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-11-06 21:58:43 -0800
committerSteven Fackler <[email protected]>2016-11-06 21:58:43 -0800
commit5f18ffa4b3cee58053209f20317b0a88eb008e43 (patch)
tree8ea77ad77d6b5d49752652e151ea09ceda18bc03 /openssl-sys/src
parentAdd conf module (diff)
downloadrust-openssl-5f18ffa4b3cee58053209f20317b0a88eb008e43.tar.xz
rust-openssl-5f18ffa4b3cee58053209f20317b0a88eb008e43.zip
Start of extension support
Diffstat (limited to 'openssl-sys/src')
-rw-r--r--openssl-sys/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs
index 3f7c8573..ac339a4b 100644
--- a/openssl-sys/src/lib.rs
+++ b/openssl-sys/src/lib.rs
@@ -1683,6 +1683,7 @@ extern {
pub fn X509_STORE_CTX_get_error_depth(ctx: *mut X509_STORE_CTX) -> c_int;
pub fn X509V3_set_ctx(ctx: *mut X509V3_CTX, issuer: *mut X509, subject: *mut X509, req: *mut X509_REQ, crl: *mut X509_CRL, flags: c_int);
+ pub fn X509V3_set_nconf(ctx: *mut X509V3_CTX, conf: *mut CONF);
pub fn X509_REQ_add_extensions(req: *mut X509_REQ, exts: *mut stack_st_X509_EXTENSION) -> c_int;
pub fn X509_REQ_sign(x: *mut X509_REQ, pkey: *mut EVP_PKEY, md: *const EVP_MD) -> c_int;