This crate provides message authentication code (MAC) functionality, as described in the upstream Tink documentation.
```Rust
fn main() -> Result<(), Box
let pt = b"this data needs to be MACed";
let mac = m.compute_mac(pt)?;
println!("'{}' => {}", String::from_utf8_lossy(pt), hex::encode(&mac));
assert!(m.verify_mac(&mac, b"this data needs to be MACed").is_ok());
println!("MAC verification succeeded.");
Ok(())
} ```
This is not an officially supported Google product.