From abc57b6e439c5ab9c3b6ed2cedeb10d50f5ae619 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 7 Nov 2014 14:46:13 -0500 Subject: work on #609 --- modules/base/tool.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'modules/base') diff --git a/modules/base/tool.go b/modules/base/tool.go index 5b56d1f6..4d3e1c7b 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -9,7 +9,9 @@ import ( "crypto/md5" "crypto/rand" "crypto/sha1" + "encoding/base64" "encoding/hex" + "errors" "fmt" "hash" "html/template" @@ -31,6 +33,26 @@ func EncodeMd5(str string) string { return hex.EncodeToString(m.Sum(nil)) } +func BasicAuthDecode(encoded string) (user string, name string, err error) { + var s []byte + s, err = base64.StdEncoding.DecodeString(encoded) + if err != nil { + return user, name, err + } + + a := strings.Split(string(s), ":") + if len(a) == 2 { + user, name = a[0], a[1] + } else { + err = errors.New("decode failed") + } + return user, name, err +} + +func BasicAuthEncode(username, password string) string { + return base64.StdEncoding.EncodeToString([]byte(username + ":" + password)) +} + // GetRandomString generate random string by specify chars. func GetRandomString(n int, alphabets ...byte) string { const alphanum = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" -- cgit v1.2.3