aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/src
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-11-13 17:06:50 +0000
committerSteven Fackler <[email protected]>2016-11-13 17:06:50 +0000
commit48c0009418cbbf7c69c24b35d56e80edb0c80d45 (patch)
tree21ab4cb2b259ea883a36865d0971c3ad65ea0722 /openssl-sys/src
parentMacroise to_der (diff)
downloadrust-openssl-48c0009418cbbf7c69c24b35d56e80edb0c80d45.tar.xz
rust-openssl-48c0009418cbbf7c69c24b35d56e80edb0c80d45.zip
Macroise from_der
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 517707c3..4ba706f9 100644
--- a/openssl-sys/src/lib.rs
+++ b/openssl-sys/src/lib.rs
@@ -1760,6 +1760,7 @@ extern {
pub fn i2d_ECPrivateKey(ec_key: *mut EC_KEY, pp: *mut *mut c_uchar) -> c_int;
pub fn d2i_X509(a: *mut *mut X509, pp: *mut *const c_uchar, length: c_long) -> *mut X509;
+ pub fn d2i_X509_REQ(a: *mut *mut X509_REQ, pp: *mut *const c_uchar, length: c_long) -> *mut X509_REQ;
pub fn i2d_X509_bio(b: *mut BIO, x: *mut X509) -> c_int;
pub fn i2d_X509(x: *mut X509, buf: *mut *mut u8) -> c_int;
pub fn i2d_X509_REQ_bio(b: *mut BIO, x: *mut X509_REQ) -> c_int;