1 unstable release

0.1.0-alpha.6 Aug 8, 2024

#1115 in Authentication

Download history 104/week @ 2024-08-04 22/week @ 2024-08-11 13/week @ 2024-08-18 20/week @ 2024-08-25 21/week @ 2024-09-01 4/week @ 2024-09-08

59 downloads per month
Used in 7 crates

MIT/Apache

40KB
446 lines

Data Security for Vercre

Shared logic for higher order crates.

This crate is not intended to be used directly. See


lib.rs:

Data Security for Vercre

This crate provides common utilities for the Vercre project and is not intended to be used directly.

JSON Object Signing and Encryption (JOSE) Proofs

JOSE proofs are enveloping proofs for Credentials based on JWT RFC7519, JWS RFC7515, and JWK RFC7517.

The Securing Verifiable Credentials using JOSE and COSE VC-JOSE-COSE recommendation defines a "bridge" between these and the Verifiable Credentials Data Model v2.0, specifying the suitable header claims, media types, etc.

In the case of JOSE, the Credential is the "payload". This is preceded by a suitable header whose details are specified by Securing Verifiable Credentials using JOSE and COSE for the usage of JWT. These are encoded, concatenated, and signed, to be transferred in a compact form by one entity to an other (e.g., sent by the holder to the verifier). All the intricate details on signatures, encryption keys, etc., are defined by the IETF specifications; see Example 6 for a specific case.

Note

If the JWT is only a JWE, iss, exp and aud MUST be omitted in the JWT Claims Set of the JWE, and the processing rules as per JARM Section 2.4 related to these claims do not apply. OpenID4VP JWT - JWE

{
  "vp_token": "eyJI...",
  "presentation_submission": {...}
}

Dependencies

~8.5MB
~165K SLoC