xxhash 1.1.1 xxhash: ^1.1.1 copied to clipboard
A FFI plugin package that implements xxHash, inspired by crypto.
import 'package:xxhash/xxhash.dart';
import 'dart:convert';
void main() {
var bytes = utf8.encode("foobar");
var digest = xxh32.convert(bytes);
print("Digest as bytes: ${digest.bytes}");
print("Digest as hex string: $digest");
}