diff options
| author | 0xa <[email protected]> | 2016-12-09 18:42:10 +0000 |
|---|---|---|
| committer | 0xa <[email protected]> | 2016-12-09 18:42:10 +0000 |
| commit | 0850f605b1fcb686bae341a4763d072af4c67e50 (patch) | |
| tree | c4160df370bada1915e2f76f02520f03031758a1 /openssl-sys/src | |
| parent | Add Blowfish support (diff) | |
| download | rust-openssl-0850f605b1fcb686bae341a4763d072af4c67e50.tar.xz rust-openssl-0850f605b1fcb686bae341a4763d072af4c67e50.zip | |
Use EVP_bf_cfb64 instead of EVP_bf_cfb
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 142ec09b..3ac3c2c2 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -1447,7 +1447,7 @@ extern { pub fn EVP_aes_256_cfb8() -> *const EVP_CIPHER; pub fn EVP_bf_cbc() -> *const EVP_CIPHER; pub fn EVP_bf_ecb() -> *const EVP_CIPHER; - pub fn EVP_bf_cfb() -> *const EVP_CIPHER; + pub fn EVP_bf_cfb64() -> *const EVP_CIPHER; pub fn EVP_bf_ofb() -> *const EVP_CIPHER; pub fn EVP_rc4() -> *const EVP_CIPHER; |