Crates.io | lib_service_jwt |
lib.rs | lib_service_jwt |
version | 0.1.3 |
source | src |
created_at | 2025-04-27 16:10:51.970681+00 |
updated_at | 2025-05-31 13:40:29.062331+00 |
description | Scalable JWT Management with Rust. |
homepage | |
repository | https://github.com/jerry-maheswara-github/lib_service_jwt |
max_upload_size | |
id | 1651277 |
size | 106,350 |
lib_service_jwt is a lightweight, ergonomic, and extensible library built on top of jsonwebtoken
that simplifies working with JSON Web Tokens (JWT) in Rust applications. Designed for production-grade authentication systems, it abstracts the complexity of key handling and token generation, while giving you full control when you need it.
jsonwebtoken
crate use lib_service_jwt::jwt::{JwtAlgorithm, JwtKeys};
use std::collections::HashMap;
use serde_json::json;
let algo = JwtAlgorithm::RS256 {
access_private: include_bytes!("../examples/rsa/access-private.pem").to_vec(),
access_public: include_bytes!("../examples/rsa/access-public.pem").to_vec(),
refresh_private: include_bytes!("../examples/rsa/refresh-private.pem").to_vec(),
refresh_public: include_bytes!("../examples/rsa/refresh-public.pem").to_vec(),
};
let keys = JwtKeys::from_algorithm(algo).expect("Failed to create JwtKeys");
let kid = "rsa-key-id";
let user_id = "user123";
let expires_in = 60 * 60 * 24 * 30;
let mut extra = HashMap::new();
let roles = vec!["admin", "user"];
extra.insert("roles".to_string(), json!(roles));
let audiences = Some(vec!["myApp1".to_string(), "myApp2".to_string()]);
extra.insert("aud".to_string(), json!(audiences.clone()));
let token = keys.generate_access_token(kid, user_id, expires_in, Some(extra.clone())).unwrap();
let decoded_token = keys.decode_token(&token, "access", audiences).unwrap();
println!("User ID: {}", decoded_token.claims.sub);
use lib_service_jwt::jwt::{JwtAlgorithm, JwtKeys};
use std::collections::HashMap;
use serde_json::json;
let algo = JwtAlgorithm::ES256 {
access_private: include_bytes!("../examples/ec/ec-access-private.pem").to_vec(),
access_public: include_bytes!("../examples/ec/ec-access-public.pem").to_vec(),
refresh_private: include_bytes!("../examples/ec/ec-refresh-private.pem").to_vec(),
refresh_public: include_bytes!("../examples/ec/ec-refresh-public.pem").to_vec(),
};
let keys = JwtKeys::from_algorithm(algo).expect("Failed to create JwtKeys");
let kid = "ec-key-id";
let user_id = "user123";
let expires_in = 60 * 60 * 24 * 30;
let mut extra = HashMap::new();
let roles = vec!["admin", "user"];
extra.insert("roles".to_string(), json!(roles));
let audiences = Some(vec!["myApp1".to_string(), "myApp2".to_string()]);
extra.insert("aud".to_string(), json!(audiences.clone()));
let token = keys.generate_access_token(kid, user_id, expires_in, Some(extra.clone())).unwrap();
let decoded_token = keys.decode_token(&token, "access", audiences).unwrap();
println!("User ID: {}", decoded_token.claims.sub);
jwt
β Core logic for generating, decoding, and verifying JWTs.model
β Contains the Claims
structure.exp
) during decodingTo generate RSA private and public keys for use with lib_service_jwt, follow these steps:
You can install OpenSSL using the appropriate package manager for your system:
brew install openssl
sudo apt-get install openssl
For access tokens, run the following command to generate the private key:
openssl genpkey -algorithm RSA -out access-private.pem -pkeyopt rsa_keygen_bits:2048
For refresh tokens, run this command:
openssl genpkey -algorithm RSA -out refresh-private.pem -pkeyopt rsa_keygen_bits:2048
These commands will generate RSA private keys encrypted with AES256 and save them to access-private.pem
and refresh-private.pem
.
Once you have the private keys, you can extract the corresponding public keys with the following commands:
For access tokens:
openssl rsa -pubout -in access-private.pem -out access-public.pem
For refresh tokens:
openssl rsa -pubout -in refresh-private.pem -out refresh-public.pem
These commands will generate the corresponding public keys and save them to access-public.pem
and refresh-public.pem
.
Once you have access-private.pem
, access-public.pem
, refresh-private.pem
, and refresh-public.pem
, you can include these keys in your project by embedding them directly in your code or loading them from disk.
A JSON Web Key (JWK) is a JSON data structure that represents a cryptographic key. It is used in JSON Web Signature (JWS) or JSON Web Encryption (JWE) to help verify or sign JSON Web Tokens (JWTs). JWKs are often used to securely share public keys.
You can distribute your jwks.json
file in a standard format by placing it under the .well-known/
directory in your web server. This follows the convention used by many services and helps ensure your JWKs are accessible for verification by others.
For example, the JWK set can be accessible at:
https://yourdomain.com/.well-known/jwks.json
This makes it easier for clients or services to automatically fetch and use your public keys for validating JWTs.
To create a JWK (JSON Web Key), you need to extract two key components from the RSA public key: modulus (n
) and exponent (e
).
This command will extract the modulus and public exponent
(which is usually 65537
in many RSA implementations) and display it in the terminal.
Note: The string has been truncated for readability. The full value is much longer.
$ openssl pkey -in access-public.pem -pubin -noout -text
Public-Key: (2048 bit)
Modulus:
00:b5:f2:5a:2e:bc:d7:20:b5:20:d5:4d:cd:d4:a5:
7c:c8:9a:fd:d8:61:e7:e4:eb:58:65:1e:ea:5a:4d:
4c:73:87:32:e0:91:a3:92:56:2e:a7:bc:1e:32:30:
43:f5:fd:db:05:5a:08:b2:25:15:5f:ac:4d ...
... 76:e9
Exponent: 65537 (0x10001)
JWK requires base64url encoding for both the modulus (n
) and the public exponent (e
). You can convert them using the base64
command in bash. Hereβs how:
echo "00:b5:f2:5a:2e:bc:d7:20:b5:20:d5:4d:cd:d4:a5:
7c:c8:9a:fd:d8:61:e7:e4:eb:58:65:1e:ea:5a:4d:
4c:73:87:32:e0:91:a3:92:56:2e:a7:bc:1e:32:30:
43:f5:fd:db:05:5a:08:b2:25:15:5f:ac:4d ...
... 76:e9" | tr -d ": \n" | xxd -p -r | base64 | tr +/ -_ | tr -d "=\n"
Result:
3drYbtHpiwwif5JoaYTCeQbsLRSY2i4 ... PW1MhYjnLeAo1Ap4tfV26Q
$ echo 010001 | xxd -p -r | base64
Result:
AQAB
Now you can create the JWK (JSON Web Key) in JSON format with the encoded modulus and exponent. Hereβs how to do it using text-editor like nano:
$ nano jwks.json
{
"keys": [
{
"kty": "RSA",
"kid": "some-key-id",
"use": "sig",
"n": "3drYbtHpiwwif5JoaYTCeQbsLRSY2i4 ... PW1MhYjnLeAo1Ap4tfV26Q",
"e": "AQAB"
}
]
}
kty
: The key type, here we use RSA.kid
: Key ID, you can set it to a unique ID for your key.use
: Indicates the use of this key, here it is used for signing (sig
).n
and e
: The modulus and public exponent, encoded in base64url format.To generate EC256 (P-256) private and public keys for use with lib_service_jwt, follow these steps:
Same as above:
brew install openssl
sudo apt-get install openssl
For access tokens:
openssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:P-256 -out ec-access-private.pem
For refresh tokens:
openssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:P-256 -out ec-refresh-private.pem
This generates EC private keys using the P-256 curve, and saves them to ec-access-private.pem
and ec-refresh-private.pem
.
For access tokens:
openssl ec -in ec-access-private.pem -pubout -out ec-access-public.pem
For refresh tokens:
openssl ec -in ec-refresh-private.pem -pubout -out ec-refresh-public.pem
This generates the public keys as ec-access-public.pem
and ec-refresh-public.pem
.
In your Rust project, load the keys like this:
use lib_service_jwt::errors::JwtServiceError;
use lib_service_jwt::jwt::{JwtAlgorithm, JwtKeys};
fn main() -> Result<(), JwtServiceError> {
let keys = JwtKeys::from_algorithm(JwtAlgorithm::ES256 {
access_private: include_bytes!("../examples/ec/ec-access-private.pem").to_vec(),
access_public: include_bytes!("../examples/ec/ec-access-public.pem").to_vec(),
refresh_private: include_bytes!("../examples/ec/ec-refresh-private.pem").to_vec(),
refresh_public: include_bytes!("../examples/ec/ec-refresh-public.pem").to_vec(),
})?;
Ok(())
}
Use these with the ES256
algorithm in the jsonwebtoken
crate.
A JSON Web Key (JWK) is a JSON data structure that represents a cryptographic key. For the ES256 algorithm (Elliptic Curve using P-256), the public key is represented by its x and y coordinates on the elliptic curve.
You can distribute your jwks.json
file by hosting it at a public endpoint,
typically under the .well-known/
directory on your server:
https://yourdomain.com/.well-known/jwks.json
This allows clients or services to automatically fetch your public key and verify JWTs signed with ES256.
First, ensure you have your EC public key (ec-access-public.pem
) generated with OpenSSL.
Then use the following command to inspect the key:
openssl ec -in ec-access-public.pem -pubin -text -noout
You will see something like:
read EC key
Public-Key: (256 bit)
pub:
04:d0:de:ba:ff:be:...:3e:7c:9a
ASN1 OID: prime256v1
NIST CURVE: P-256
The pub
value is an uncompressed point: it starts with 04
, followed by the 32-byte x
and 32-byte y
coordinates.
You can extract the x
and y
values from the public key in hex form and then base64url-encode them:
# Extract public key to DER format (binary)
openssl ec -in ec-access-public.pem -pubin -outform DER -out ec-access-public.der
# Convert to raw uncompressed coordinates (skip first byte 0x04)
dd if=ec-access-public.der bs=1 skip=27 count=64 of=ec-xy.raw
# Split into x and y
dd if=ec-xy.raw bs=1 count=32 of=ec-x.raw
dd if=ec-xy.raw bs=1 skip=32 count=32 of=ec-y.raw
# Convert to base64url
base64 -w0 ec-x.raw | tr +/ -_ | tr -d '=' > ec-x.b64
base64 -w0 ec-y.raw | tr +/ -_ | tr -d '=' > ec-y.b64
Now create your jwks.json
file with the values from ec-x.b64
and ec-y.b64
:
$ nano jwks.json
{
"keys": [
{
"kty": "EC",
"crv": "P-256",
"x": "base64url-encoded-x-coordinate",
"y": "base64url-encoded-y-coordinate",
"use": "sig",
"alg": "ES256",
"kid": "your-ec-key-id"
}
]
}
kty
: Key type β for EC keys this is "EC"
.crv
: Curve β "P-256"
for ES256.x
and y
: X and Y coordinates of the public key in base64url format (no padding).use
: "sig"
indicates this key is used for signing.alg
: "ES256"
specifies the JWT algorithm.kid
: Key ID β used to match the JWT header with the key.β
You now have a valid jwks.json
file ready to serve and use with ES256 JWTs.
Licensed under the Apache License 2.0.
Created and maintained by Jerry Maheswara.
Feel free to reach out for suggestions, issues, or improvements!
This project is built with β€οΈ using Rust β a systems programming language that is safe, fast, and concurrent. Rust is the perfect choice for building reliable and efficient applications.
Pull requests, issues, and feedback are welcome!
If you find this crate useful, give it a β and share it with others in the Rust community.
ES256
algorithm (Elliptic Curve with P-256).JwtAlgorithm
enum: Introduced a new ES256
variant with corresponding fields for access and refresh keys.Ec256KeyPair
backend: Includes logic for encoding and decoding JWTs using EC private/public key pairs.jwks.json
with correct x
, y
, and crv
fields.JwtServiceError
: A structured error enum mirroring variants from jsonwebtoken::errors
, allowing more transparent and fine-grained error handling.From<jsonwebtoken::errors::Error>
: Enables seamless conversion from raw JWT errors into the custom JwtServiceError
enum.thiserror
dependency: Used for ergonomic and readable custom error definitions via the #[derive(Error)]
macro.