1
0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-09-19 15:42:58 +00:00

Merge branch 'master' of github.com:Luzifer/cloudkeys-go

This commit is contained in:
Martin Thielecke 2015-08-01 11:32:28 +00:00
commit 7a0f9e22ba
2 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,10 @@
1.2.2 / 2015-08-01
==================
* Fix: On register the username needs to be treated like in login
* Fixed numbering in README
1.2.1 / 2015-07-31
==================

View File

@ -4,6 +4,7 @@ import (
"crypto/sha1"
"fmt"
"net/http"
"strings"
"github.com/flosch/pongo2"
"github.com/gorilla/sessions"
@ -11,7 +12,7 @@ import (
func registerHandler(res http.ResponseWriter, r *http.Request, session *sessions.Session, ctx *pongo2.Context) (*string, error) {
var (
username = r.FormValue("username")
username = strings.ToLower(r.FormValue("username"))
password = r.FormValue("password")
passwordCheck = r.FormValue("password_repeat")
hashedPassword = fmt.Sprintf("%x", sha1.Sum([]byte(cfg.PasswordSalt+password)))