sing/common/buf/hex.go
2022-05-02 11:18:46 +08:00

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)
}