https://github.com/rob-blackbourn/rust-ldap-demo
An example of authenticating using async LDAP over TLS with rust.
https://github.com/rob-blackbourn/rust-ldap-demo
authentication client client-side ldap ldap3 rust rust-lang rustls tokio
Last synced: 8 days ago
JSON representation
An example of authenticating using async LDAP over TLS with rust.
- Host: GitHub
- URL: https://github.com/rob-blackbourn/rust-ldap-demo
- Owner: rob-blackbourn
- Created: 2025-02-11T07:14:47.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-12T07:03:00.000Z (over 1 year ago)
- Last Synced: 2025-03-03T18:49:54.880Z (over 1 year ago)
- Topics: authentication, client, client-side, ldap, ldap3, rust, rust-lang, rustls, tokio
- Language: Rust
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-ldap-demo
An example of authenticating using async LDAP over TLS with rust.
Using:
* [ldap3](https://crates.io/crates/ldap3)
* [tokio](https://crates.io/crates/tokio)
* [rustls](https://crates.io/crates/rustls)
## Notes
In order to use `rustls` instead of `native-tls` The cargo specification for
ldap3 sets `default-features=false` to avoid conflicts.