MCPcopy Create free account
hub / github.com/LagrangeDev/LagrangeGo / MustParseHexStr

Function MustParseHexStr

utils/string.go:30–36  ·  view source on GitHub ↗
(s string)

Source from the content-addressed store, hash-verified

28}
29
30func MustParseHexStr(s string) []byte {
31 result, err := hex.DecodeString(s)
32 if err != nil {
33 panic(err)
34 }
35 return result
36}
37
38func NewTrace() string {
39 randomBytes := make([]byte, 16+8)

Callers 9

buildNtloginRequestFunction · 0.92
FetchQRCodeMethod · 0.92
QRCodeLoginMethod · 0.92
PackPacketMethod · 0.92
T106Function · 0.92
T144Function · 0.92
BuildKexExchangeRequestFunction · 0.92
ParseMessageElementsFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected