clash/transport/hysteria/obfs/obfs.go

6 lines
122 B
Go

package obfs
type Obfuscator interface {
Deobfuscate(in []byte, out []byte) int
Obfuscate(in []byte, out []byte) int
}