mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
24 lines
535 B
Go
24 lines
535 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/gofrs/uuid"
|
|
"github.com/zhangyunhao116/fastrand"
|
|
)
|
|
|
|
type fastRandReader struct{}
|
|
|
|
func (r fastRandReader) Read(p []byte) (int, error) {
|
|
return fastrand.Read(p)
|
|
}
|
|
|
|
var UnsafeUUIDGenerator = uuid.NewGenWithOptions(uuid.WithRandomReader(fastRandReader{}))
|
|
|
|
// UUIDMap https://github.com/XTLS/Xray-core/issues/158#issue-783294090
|
|
func UUIDMap(str string) (uuid.UUID, error) {
|
|
u, err := uuid.FromString(str)
|
|
if err != nil {
|
|
return UnsafeUUIDGenerator.NewV5(uuid.Nil, str), nil
|
|
}
|
|
return u, nil
|
|
}
|