etebase_utils_from_base64 method
Convert a Base64 URL encoded string to a buffer
@param string the Base64 URL encoded string
@paramout
buf the output byte buffer
@param buf_maxlen the maximum number of bytes to be written to buf
@paramout
buf_len variable to store the buffer length in
Implementation
int etebase_utils_from_base64(
ffi.Pointer<ffi.Char> string,
ffi.Pointer<ffi.Void> buf,
int buf_maxlen,
ffi.Pointer<ffi.UintPtr> buf_len,
) {
return _etebase_utils_from_base64(
string,
buf,
buf_maxlen,
buf_len,
);
}