Converts a buffer to a hexadecimal representation
@param {Uint8List} buf
@returns {String}
String bufToHex(Uint8List buf) { return Utf8Decoder().convert(buf); }