pub unsafe extern "C" fn av_hash_final_b64(
    ctx: *mut AVHashContext,
    dst: *mut u8,
    size: c_int
)
Expand description

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 @param[out] dst Where the final hash value will be stored @param[in] size Maximum number of bytes to write to dst