pub fn sha3_cid(data: &[u8]) -> Result<Cid>
Computes a SHA3-256 CID.
use ipfrs_core::utils::sha3_cid; let cid = sha3_cid(b"Hello, World!").unwrap();