feat(auth): encrypt password login transport

Closes #6743
This commit is contained in:
CaIon
2026-08-29 20:11:36 +08:00
parent 98d50d5383
commit b80d633cf5
10 changed files with 372 additions and 12 deletions
+4
View File
@@ -318,6 +318,10 @@ func InitResources() error {
common.FatalLog("failed to initialize authorization: " + err.Error())
return err
}
if err = model.InitPasswordEncryption(); err != nil {
common.FatalLog("failed to initialize password encryption: " + err.Error())
return err
}
model.CheckSetup()