pub fn sha512_cid(data: &[u8]) -> Result<Cid>
Computes a SHA2-512 CID (64-byte hash).
use ipfrs_core::utils::sha512_cid; let cid = sha512_cid(b"Hello, World!").unwrap();