remove unused code in BasicAuthDecode
This commit is contained in:
parent
b7ebbb4064
commit
e321469884
1 changed files with 2 additions and 7 deletions
|
@ -48,13 +48,8 @@ func BasicAuthDecode(encoded string) (user string, name string, err error) {
|
||||||
return user, name, err
|
return user, name, err
|
||||||
}
|
}
|
||||||
|
|
||||||
a := strings.SplitN(string(s), ":", 2)
|
auth := strings.SplitN(string(s), ":", 2)
|
||||||
if len(a) != 2 {
|
return auth[0], auth[1], err
|
||||||
err = errors.New("decode failed")
|
|
||||||
} else {
|
|
||||||
user, name = a[0], a[1]
|
|
||||||
}
|
|
||||||
return user, name, err
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func BasicAuthEncode(username, password string) string {
|
func BasicAuthEncode(username, password string) string {
|
||||||
|
|
Loading…
Reference in a new issue