mirror of
https://github.com/fatedier/frp.git
synced 2025-01-05 21:49:10 +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))
|
||
|
}
|