coz-rs 0.4.1

Coz cryptographic JSON messaging specification
Documentation

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)?;