#![allow(missing_docs)]
use wolfcose::{sign1_to_vec, PayloadMode};
fn main() {
let mut scratch = [0u8; 512];
let _ = &mut scratch;
println!(
"COSE_Sign1 requires a wolfCrypt signing key; attach it through wolfcose::raw and call sign1_to_vec(...)"
);
let _api = sign1_to_vec;
let _payload = PayloadMode::Attached(b"payload");
}