diff options
| author | Charlie Ozinga <[email protected]> | 2016-04-19 17:28:19 -0600 |
|---|---|---|
| committer | Charlie Ozinga <[email protected]> | 2016-04-19 17:28:19 -0600 |
| commit | 5682c044696bacb6600617433826141b0a08cd66 (patch) | |
| tree | 0722303b66763b67e9f91ebdf00a68faad3cedcf /openssl-sys/src | |
| parent | Add 1DES symm ciphers (des-cbc, des-ecb, des-cfb, des-ofb) (diff) | |
| download | rust-openssl-5682c044696bacb6600617433826141b0a08cd66.tar.xz rust-openssl-5682c044696bacb6600617433826141b0a08cd66.zip | |
Remove des_cfb and des_ofb, since they appear on limit platforms
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 958d0ebe..8b7bdd09 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -529,8 +529,6 @@ extern "C" { pub fn EVP_des_cbc() -> *const EVP_CIPHER; pub fn EVP_des_ecb() -> *const EVP_CIPHER; - pub fn EVP_des_cfb() -> *const EVP_CIPHER; - pub fn EVP_des_ofb() -> *const EVP_CIPHER; pub fn EVP_BytesToKey(typ: *const EVP_CIPHER, md: *const EVP_MD, salt: *const u8, data: *const u8, datalen: c_int, |