mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
9 lines
161 B
Go
9 lines
161 B
Go
package buf
|
|
|
|
import "encoding/hex"
|
|
|
|
func EncodeHexString(src []byte) string {
|
|
dst := Make(hex.EncodedLen(len(src)))
|
|
hex.Encode(dst, src)
|
|
return string(dst)
|
|
}
|