diff options
| author | Steven Fackler <[email protected]> | 2017-02-14 19:37:25 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2017-02-14 19:37:25 -0800 |
| commit | 19f3b8a11acc576135e94741975cd1d27e64794f (patch) | |
| tree | 5c0cc8fdc522b2e2db7d9e93a2a03277e8d1e14b /openssl-sys/src | |
| parent | Release v0.9.7 (diff) | |
| download | rust-openssl-19f3b8a11acc576135e94741975cd1d27e64794f.tar.xz rust-openssl-19f3b8a11acc576135e94741975cd1d27e64794f.zip | |
Support PKCS#8 private key deserialization
Closes #581
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 125acd94..a599c369 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -1639,7 +1639,7 @@ extern { e: *mut ENGINE, key: *const c_uchar, keylen: c_int) -> *mut EVP_PKEY; - + pub fn d2i_PKCS8PrivateKey_bio(bp: *mut BIO, x: *mut *mut EVP_PKEY, cb: Option<PasswordCallback>, u: *mut c_void) -> *mut EVP_PKEY; pub fn EVP_PKEY_CTX_ctrl(ctx: *mut EVP_PKEY_CTX, keytype: c_int, optype: c_int, cmd: c_int, p1: c_int, p2: *mut c_void) -> c_int; |