This crate provides pseudo-random function (PRF) functionality, as described in the upstream Tink documentation.
```Rust
fn main() -> Result<(), Box
let pt = b"need pseudo-random data deterministically produced from this input";
let out = m.compute_primary_prf(pt, 16)?;
println!("'{}' => {}", String::from_utf8_lossy(pt), hex::encode(&out));
assert_eq!(out.len(), 16);
Ok(())
} ```
This is not an officially supported Google product.