This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.

7 lines
122 B
Go

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