pub fn blake3_cid(data: &[u8]) -> Result<Cid>
Computes a BLAKE3 CID (fastest, modern cryptographic design).
use ipfrs_core::utils::blake3_cid; let cid = blake3_cid(b"Hello, World!").unwrap();