mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
15 lines
298 B
Go
15 lines
298 B
Go
|
package testfixtures
|
||
|
|
||
|
import (
|
||
|
"encoding/hex"
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func (l *Loader) tryHexStringToBytes(s string) ([]byte, error) {
|
||
|
if !strings.HasPrefix(s, "0x") {
|
||
|
return nil, fmt.Errorf("not a hexadecimal string, must be prefix 0x")
|
||
|
}
|
||
|
return hex.DecodeString(strings.TrimPrefix(s, "0x"))
|
||
|
}
|