/** * Re-export FNV-1a helpers from `@czap/canonical`, re-anchored to spine brands. * @module */ import type { ContentAddress } from './brands.js'; /** FNV-1a hash of a string, returned as a spine {@link ContentAddress}. */ export declare function fnv1a(str: string): ContentAddress; /** FNV-1a hash of raw bytes, returned as a spine {@link ContentAddress}. */ export declare function fnv1aBytes(bytes: Uint8Array): ContentAddress; //# sourceMappingURL=fnv.d.ts.map