EdgexAgent/device-gps-go/vendor/nhooyr.io/websocket/mask_go.go
2025-07-10 20:30:06 +08:00

8 lines
121 B
Go

//go:build !amd64 && !arm64 && !js
package websocket
func mask(b []byte, key uint32) uint32 {
return maskGo(b, key)
}