etebase_utils_pretty_fingerprint method
Return a pretty formatted fingerprint of the content
For example:
45680 71497 88570 93128
19189 84243 25687 20837
47924 46071 54113 18789
@param content the content to create a fingerprint for
@param content_size the size of the content buffer
@paramout
buf the output byte buffer
Implementation
int etebase_utils_pretty_fingerprint(
ffi.Pointer<ffi.Void> content,
int content_size,
ffi.Pointer<ffi.Char> buf,
) {
return _etebase_utils_pretty_fingerprint(
content,
content_size,
buf,
);
}