add README
This commit is contained in:
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# Account
|
||||||
|
|
||||||
|
This project implements a secure account management system.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
* Create an account with a username, password, and 2FA.
|
||||||
|
* Passwords are securely salted and hashed using the PBKDF2 algorithm.
|
||||||
|
* 2FA is implemented using the TOTP algorithm.
|
||||||
|
* Create a session.
|
||||||
|
* Sessions are authenticated using randomly generated session tokens.
|
||||||
|
* Access and manage accounts and sessions.
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
kotlin = "2.2.10"
|
kotlin = "2.2.10"
|
||||||
ktor = "3.2.3"
|
ktor = "3.2.3"
|
||||||
exposed = "0.61.0"
|
exposed = "0.61.0"
|
||||||
migration = "1.0.2"
|
migration = "1.1.0"
|
||||||
postgres = "42.7.5"
|
postgres = "42.7.5"
|
||||||
random = "1.0.0"
|
random = "1.0.0"
|
||||||
otp = "1.1.1"
|
otp = "1.1.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user