av_des_crypt

@brief Encrypts / decrypts using the DES algorithm.

@param count number of 8 byte blocks @param dst destination array, can be equal to src, must be 8-byte aligned @param src source array, can be equal to dst, must be 8-byte aligned, may be NULL @param iv initialization vector for CBC mode, if NULL then ECB will be used, must be 8-byte aligned @param decrypt 0 for encryption, 1 for decryption

extern (C) @nogc nothrow
void
av_des_crypt
(,
ubyte* dst
,
const(ubyte)* src
,
int count
,
ubyte* iv
,)

Meta