Function av_blowfish_crypt
pub unsafe extern "C" fn av_blowfish_crypt(
ctx: *mut AVBlowfish,
dst: *mut u8,
src: *const u8,
count: i32,
iv: *mut u8,
decrypt: i32,
)
Expand description
Encrypt or decrypt a buffer using a previously initialized context.
@param ctx an AVBlowfish context @param dst destination array, can be equal to src @param src source array, can be equal to dst @param count number of 8 byte blocks @param iv initialization vector for CBC mode, if NULL ECB will be used @param decrypt 0 for encryption, 1 for decryption