Sample code for 30+ languages & platforms
Rust

Set the JWS Payload from BinData

See more JSON Web Signatures (JWS) Examples

Demonstrates Jws.SetPayloadBd, which sets the payload to be signed from the binary bytes in a BinData.

Background. JWS (JSON Web Signature) integrity-protects a payload with a signature or MAC. The header alg names the algorithm; this example uses HMAC-SHA256 (HS256) with a symmetric MAC key.

Chilkat Rust Downloads

Rust

let jws = chilkat::Jws::new();

// Set the payload from the binary bytes in a BinData.
let bd_payload = chilkat::BinData::new();
let _ = bd_payload.append_string("Binary content to sign.", "utf-8");

if jws.set_payload_bd(&bd_payload).is_err() {
    println!("{}", jws.last_error_text());
    return;
}

println!("Payload set.");