mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-19 16:50:56 +00:00
6 lines
122 B
Go
6 lines
122 B
Go
package obfs
|
|
|
|
type Obfuscator interface {
|
|
Deobfuscate(in []byte, out []byte) int
|
|
Obfuscate(in []byte, out []byte) int
|
|
}
|