#jwt #token #authorization #security #wasm #mini-functions #webprogramming

cclm

The Claims library holds JSON Web Token (JWT) cclm. It provides an RFC7519 compliant implementation of JSON Web Tokens (JWT) and JSON Web Signature (JWS) for Rust.

1 unstable release

0.0.1 Feb 7, 2023

#147 in #authorization

Download history 57/week @ 2023-12-03 21/week @ 2023-12-10 47/week @ 2023-12-17 79/week @ 2023-12-24 2/week @ 2024-01-28 8/week @ 2024-02-18 13/week @ 2024-02-25 20/week @ 2024-03-03 25/week @ 2024-03-10

66 downloads per month
Used in 3 crates

MIT/Apache

20KB
69 lines

CCLM

A Rust library for accessing and manipulating claims of a JSON Web Token (JWT)

Made With Love Crates.io Lib.rs Docs.rs License

divider

Welcome to CCLM 👋

CCLM Banner

Website â€ĸ Documentation â€ĸ Report Bug â€ĸ Request Feature â€ĸ Contributing Guidelines

Overview 📖

The Claims library holds JSON Web Token (JWT) claims. It provides an RFC7519 compliant implementation of JSON Web Tokens (JWT) and JSON Web Signature (JWS) for Rust.

The Claims type is provided to hold the claims of a JWT. The claims are stored in a HashMap and can be accessed using the get_claim, set_claim, remove_claim, and has_claim methods.

Features ✨

The following table lists the optional reserved claims that are supported:

Claim Description
aud (Audience) Identifies the recipients that the JWT is intended for.
custom (Custom) Custom claims are used to share information between parties that agree on using them and are neither registered or public claims.
did (Decentralized Identifier) A string value that uniquely identifies a subject.
exp (Expiration Time) Identifies the expiration time on or after which the JWT MUST NOT be accepted for processing.
iat (Issued At) Identifies the time at which the JWT was issued.
iss (Issuer) Identifies the principal that issued the JWT.
jti (JWT ID) Provides a unique identifier for the JWT.
nbf (Not Before) Identifies the time before which the JWT MUST NOT be accepted for processing.
sub (Subject) Identifies the principal that is the subject of the JWT.
vc (Verifiable Credential) A Credential that is tamper-evident and has authorship that can be cryptographically verified.
vp (Verifiable Presentation) A Presentation that is tamper-evident and has authorship that can be cryptographically verified.

Installation đŸ“Ļ

It takes just a few minutes to get up and running with cclm.

Requirements

cclm requires Rust 1.67.0 or later.

Documentation

ℹī¸ Info: Please check out our website for more information and find our documentation on docs.rs, lib.rs and crates.io.

Usage 📖

To use cclm in your project, add the following to your Cargo.toml file:

[dependencies]
cclm = "0.0.1"

Add the following to your main.rs file:

extern crate cclm;
use cclm::*;

then you can use the functions in your application code.

Examples

CCLM comes with a set of examples that you can use to get started. The examples are located in the examples directory of the project. To run the examples, clone the repository and run the following command in your terminal from the project root directory.

cargo run --example cclm

Semantic Versioning Policy đŸšĨ

For transparency into our release cycle and in striving to maintain backward compatibility, QRC follows semantic versioning.

License 📝

The project is licensed under the terms of both the MIT license and the Apache License (Version 2.0).

Contribution 🤝

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

divider

Acknowledgements 💙

A big thank you to all the awesome contributors of Mini Functions for their help and support. A special thank you goes to the Rust Reddit community for providing a lot of useful suggestions on how to improve this project. A special thank you goes to the Rust Reddit community for providing a lot of useful suggestions on how to improve this project.

Dependencies

~0.4–1MB
~23K SLoC