mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 03:27:13 +08:00
Indentation consistency near calls to rand.Read
This commit is contained in:
parent
93bb792964
commit
80a2c637d2
@ -95,7 +95,6 @@ func (s *Server) handleAccountRegister(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
uuid := make([]byte, 16)
|
uuid := make([]byte, 16)
|
||||||
|
|
||||||
_, err = rand.Read(uuid)
|
_, err = rand.Read(uuid)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
httpError(w, r, fmt.Sprintf("failed to generate uuid: %s", err), http.StatusInternalServerError)
|
httpError(w, r, fmt.Sprintf("failed to generate uuid: %s", err), http.StatusInternalServerError)
|
||||||
@ -103,7 +102,6 @@ func (s *Server) handleAccountRegister(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
salt := make([]byte, 16)
|
salt := make([]byte, 16)
|
||||||
|
|
||||||
_, err = rand.Read(salt)
|
_, err = rand.Read(salt)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
httpError(w, r, fmt.Sprintf("failed to generate salt: %s", err), http.StatusInternalServerError)
|
httpError(w, r, fmt.Sprintf("failed to generate salt: %s", err), http.StatusInternalServerError)
|
||||||
@ -158,7 +156,6 @@ func (s *Server) handleAccountLogin(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
token := make([]byte, 32)
|
token := make([]byte, 32)
|
||||||
|
|
||||||
_, err = rand.Read(token)
|
_, err = rand.Read(token)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
httpError(w, r, fmt.Sprintf("failed to generate token: %s", err), http.StatusInternalServerError)
|
httpError(w, r, fmt.Sprintf("failed to generate token: %s", err), http.StatusInternalServerError)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user