2 unstable releases

0.2.0 Jul 8, 2022
0.1.0 Jul 25, 2021

#500 in Authentication

Download history 52/week @ 2023-12-18 25/week @ 2023-12-25 2/week @ 2024-01-01 27/week @ 2024-01-08 97/week @ 2024-01-15 88/week @ 2024-01-22 65/week @ 2024-01-29 80/week @ 2024-02-05 96/week @ 2024-02-12 79/week @ 2024-02-19 87/week @ 2024-02-26 58/week @ 2024-03-04 84/week @ 2024-03-11 40/week @ 2024-03-18 54/week @ 2024-03-25 166/week @ 2024-04-01

346 downloads per month

MIT/Apache

21KB
280 lines

NATS JWT (Rust)

Crates.io Crates.io Docs.rs

Generate JWTs signed using NKEYs for use with NATS

Supports generating account and user JWTs, operator JWTs are not typically generated on the fly and so aren't supported, although a PR adding support would be accepted.

Example

use nats_jwt::{KeyPair, Token};

// You would probably load the operator's seed via a config and use KeyPair::from_seed
let operator_signing_key = KeyPair::new_operator();

let account_keypair = KeyPair::new_account();
let account_signing_key = KeyPair::new_account();
let account_token = Token::new_account(account_keypair.public_key())
    .name("My Account")
    .add_signing_key(account_signing_key.public_key())
    .max_connections(100)
    .sign(&operator_signing_key);
println!("account_token: {}", account_token);

let user_keypair = KeyPair::new_user();
let user_key_pub = user_keypair.public_key();
let user_token = Token::new_user(account_keypair.public_key(), user_key_pub)
    .bearer_token(true)
    .name("My User")
    .max_subscriptions(10)
    .max_payload(1024 * 1024) // 1MiB
    .allow_publish("service.hello.world")
    .allow_subscribe("_INBOX.>")
    .sign(&account_signing_key);
println!("user_token: {}", user_token);

License

Licensed under either of

at your option.

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.

Dependencies

~5MB
~102K SLoC