EdgexAgent/device-ble-go/vendor/nhooyr.io/websocket/mask_go.go

8 lines
121 B
Go
Raw Normal View History

2025-07-10 20:40:32 +08:00
//go:build !amd64 && !arm64 && !js
package websocket
func mask(b []byte, key uint32) uint32 {
return maskGo(b, key)
}