av_hmac_calc

Hash an array of data with a key. @param ctx The HMAC context @param data The data to hash @param len The length of the data, in bytes @param key The authentication key @param keylen The length of the key, in bytes @param out The output buffer to write the digest into @param outlen The length of the out buffer, in bytes @return The number of bytes written to out, or a negative error code.

extern (C) @nogc nothrow
int
av_hmac_calc
(,
const(ubyte)* data
,
uint len
,
const(ubyte)* key
,
uint keylen
,
ubyte* out_
,
uint outlen
)

Meta