#ifndef ANI_BLAKE3_H
#defineANI_BLAKE3_H/* Wrapper for the vendored blake3 hash algorithm (the C implementation) */#defineBLAKE3_LEN32/* Hash the given input of the indicated length and put the result in out */voidblake3_hash(uint8_t*out,uint8_t*in,size_tlen);/* Compare two hashes */intblake3_cmp(uint8_t*h1,uint8_t*h2);#endif