Need a means to change password

Author: 490694561Created Jul 8, 2020Updated Jul 8, 2020

Now it is only possible to add the account password through the counter generation or by modifying the database file of {path}/grid-app/proxy/db/manager.db

go
......
h := sha1.New()
io.WriteString(h, password+constPasswordSalt)
passwordHashed := base64.URLEncoding.EncodeToString(h.Sum(nil))
fmt.Println("Hashed PW: " + passwordHashed)
......

Thanks for this app, so useful.