mirror of
https://github.com/fatedier/frp.git
synced 2024-12-13 18:21:14 +01:00
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))
|
|
}
|