Coz
A Rust implementation of the Coz cryptographic JSON messaging specification.
Example
use coz::{SigningKey, ES256, PayBuilder};
let key = SigningKey::<ES256>::generate();
let coz = PayBuilder::new()
.msg("Hello, Coz!")
.sign(&key)?;
A Rust implementation of the Coz cryptographic JSON messaging specification.
use coz::{SigningKey, ES256, PayBuilder};
let key = SigningKey::<ES256>::generate();
let coz = PayBuilder::new()
.msg("Hello, Coz!")
.sign(&key)?;