Loading openssl-sys/src/lib.rs +1 −1 Original line number Diff line number Diff line Loading @@ -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; Loading openssl/src/symm.rs +2 −2 Original line number Diff line number Diff line Loading @@ -88,8 +88,8 @@ impl Cipher { unsafe { Cipher(ffi::EVP_bf_ecb()) } } pub fn bf_cfb() -> Cipher { unsafe { Cipher(ffi::EVP_bf_cfb()) } pub fn bf_cfb64() -> Cipher { unsafe { Cipher(ffi::EVP_bf_cfb64()) } } pub fn bf_ofb() -> Cipher { Loading Loading
openssl-sys/src/lib.rs +1 −1 Original line number Diff line number Diff line Loading @@ -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; Loading
openssl/src/symm.rs +2 −2 Original line number Diff line number Diff line Loading @@ -88,8 +88,8 @@ impl Cipher { unsafe { Cipher(ffi::EVP_bf_ecb()) } } pub fn bf_cfb() -> Cipher { unsafe { Cipher(ffi::EVP_bf_cfb()) } pub fn bf_cfb64() -> Cipher { unsafe { Cipher(ffi::EVP_bf_cfb64()) } } pub fn bf_ofb() -> Cipher { Loading