Lightweight OpenID primitives & client
Go to file
Pierre Hubert c073a1a943
continuous-integration/drone/push Build is passing Details
Merge pull request 'Update Rust crate serde to 1.0.198' (#62) from renovate/serde-1.x into master
Reviewed-on: #62
2024-04-17 05:59:30 +00:00
src Develop first version (#1) 2023-04-29 07:49:35 +00:00
.drone.yml Develop first version (#1) 2023-04-29 07:49:35 +00:00
.gitignore Initial commit 2023-04-28 19:03:56 +02:00
Cargo.lock Update Rust crate serde to 1.0.198 2024-04-17 00:11:00 +00:00
Cargo.toml Update Rust crate serde to 1.0.198 2024-04-17 00:11:00 +00:00
README.md Develop first version (#1) 2023-04-29 07:49:35 +00:00
renovate.json Allow Renovate to perform major updates 2024-01-03 10:17:14 +00:00

README.md

Light OpenID

Build Status Crate

Lightweight OpenID primitives & client. This package can be used to turn an application into an OpenID relying party.

Warning ! This crate has not been audited, use at your own risks!

It is your responsibility to implement the routes (start & finish authentication) that interacts with the OpenIDConfig helper structure.

Moreover, only a very small subset of OpenID specifications are supported :

  • code authorization flow
  • The scopes openid profile email are hard coded and cannot be changed
  • User info retrieval using userinfo endpoint

Basic usage

let config = OpenIDConfig::load_from_url(&AppConfig::get().configuration_url).await.unwrap();

// Start authentication
let auth_url = config.gen_authorization_url("client_id", "state", "redirect_uri");
redirect_user(auth_url);


// Finish authentication
let token_response = config.request_token("client_id", "client_secret", "code", "redirect_uri").await.unwrap();
let user_info = config.request_user_info(&token_response).await.unwrap();
// user_info now contains profile info of user

Feature crypto-wrapper

CryptoWrapper is a helper that can encrypt to base64-encoded string structures:

#[derive(Encode, Decode, Eq, PartialEq, Debug)]
struct Message(String);

fun test() {
    let wrapper = CryptoWrapper::new_random();
    let msg = Message("Hello world".to_string());
    let enc = wrapper.encrypt(&msg).unwrap();
    let dec: Message = wrapper.decrypt( & enc).unwrap();
    
    assert_eq!(dec, msg);
}

Note : In order to use CryptoWrapper on your own, you must add bincode>=2.0 as one of your own dependencies. This is not required if you decide use BasicStateManager.

BasicStateManager is a helper that uses CryptoWrapper to generate and validates states for OpenID authentication:

let ip = IpAddr::V4(Ipv4Addr::new(192, 168, 1, 1));
let manager = BasicStateManager::new();
let state = manager.gen_state(ip).unwrap();
assert!(manager.validate_state(ip, &state).is_ok());

Complete example

A complete example usage of this crate can be found here: https://gitea.communiquons.org/pierre/oidc-test-client