Ready to release
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Pierre HUBERT 2023-04-29 09:40:39 +02:00
parent f5630d6726
commit 03aa45c962
4 changed files with 6 additions and 3 deletions

View File

@ -9,6 +9,7 @@ steps:
commands:
- rustup component add clippy
- cargo clippy --all-features -- -D warnings
- cargo clippy -- -D warnings
- cargo test --all-features

2
Cargo.lock generated
View File

@ -478,7 +478,7 @@ checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317"
[[package]]
name = "light-openid"
version = "0.3.0-alpha"
version = "1.0.0"
dependencies = [
"aes-gcm",
"base64",

View File

@ -1,6 +1,6 @@
[package]
name = "light-openid"
version = "0.3.0-alpha"
version = "1.0.0"
edition = "2021"
repository = "https://gitea.communiquons.org/pierre/light-openid"
authors = ["Pierre HUBERT <pierre.git@communiquons.org>"]

View File

@ -47,6 +47,9 @@ fun test() {
}
```
> 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:
```rust
@ -56,7 +59,6 @@ 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](https://gitea.communiquons.org/pierre/oidc-test-client)