mirror of https://github.com/fatedier/frp
11 lines
197 B
Go
11 lines
197 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"encoding/base64"
|
||
|
)
|
||
|
|
||
|
func BasicAuth(username, passwd string) string {
|
||
|
auth := username + ":" + passwd
|
||
|
return "Basic " + base64.StdEncoding.EncodeToString([]byte(auth))
|
||
|
}
|