1
0
mirror of https://github.com/fatedier/frp.git synced 2025-05-17 12:58:26 +00:00

11 lines
197 B
Go
Raw Normal View History

2021-06-18 16:48:36 +08:00
package utils
import (
"encoding/base64"
)
func BasicAuth(username, passwd string) string {
auth := username + ":" + passwd
return "Basic " + base64.StdEncoding.EncodeToString([]byte(auth))
}