mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 08:15:52 +03:00
[PR #5] [MERGED] Implement OPAQUE protocol for client-server authentication #492
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#492
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/lldap/lldap/pull/5
Author: @nitnelave
Created: 6/23/2021
Status: ✅ Merged
Merged: 6/23/2021
Merged by: @nitnelave
Base:
main← Head:opaque📝 Commits (10+)
71ae9b0Add OPAQUE implementation6dcf71aOpaque: use argon2 as slow hash7e1230dImplement password checking using opaquee4a2540Make passwords optional when registering a new user2cf3d2fSimplify opaque types65db910Simplify KeyPair handling0c75470clippy: fix lint warning6b21c0fAdd messages for the OPAQUE protocol03256adCreate SQL tables for the temporary OPAQUE datafdc4249Add the OPAQUE tables to the cleanup cron📊 Changes
28 files changed (+1837 additions, -335 deletions)
View changed files
📝
.gitignore(+3 -0)📝
Cargo.lock(+149 -1)📝
Cargo.toml(+6 -1)📝
app/Cargo.lock(+111 -0)📝
app/Cargo.toml(+5 -1)📝
app/src/api.rs(+110 -52)📝
app/src/create_user.rs(+1 -1)📝
app/src/login.rs(+89 -35)📝
model/Cargo.lock(+201 -63)📝
model/Cargo.toml(+26 -0)📝
model/src/lib.rs(+54 -2)➕
model/src/opaque.rs(+203 -0)📝
src/domain/error.rs(+4 -0)📝
src/domain/handler.rs(+9 -2)📝
src/domain/mod.rs(+2 -0)➕
src/domain/opaque_handler.rs(+36 -0)📝
src/domain/sql_backend_handler.rs(+98 -109)➕
src/domain/sql_opaque_handler.rs(+396 -0)📝
src/domain/sql_tables.rs(+98 -5)📝
src/infra/auth_service.rs(+104 -20)...and 8 more files
📄 Description
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.