av_hash_final_b64

Finalize a hash context and store the Base64 representation of the actual hash value as a string.

It is not safe to update or finalize a hash context again, if it has already been finalized.

The string is always 0-terminated.

If size is smaller than AV_BASE64_SIZE(hash_size), where hash_size is the value returned by av_hash_get_size(), the string will be truncated.

@param[in,out] ctx Hash context @paramout dst Where the final hash value will be stored @paramin size Maximum number of bytes to write to dst

extern (C) @nogc nothrow
void
av_hash_final_b64
(,
ubyte* dst
,
int size
)

Meta