├── .gitignore ├── LICENSE ├── README.md ├── arithmetic.go ├── arithmetic_test.go ├── byteSequenceShaper.go ├── decompressionShaper.go ├── defragmenter.go ├── encryptionShaper.go ├── fragment.go ├── fragmentationShaper.go ├── headerShaper.go ├── protean.go └── utransformers.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/README.md -------------------------------------------------------------------------------- /arithmetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/arithmetic.go -------------------------------------------------------------------------------- /arithmetic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/arithmetic_test.go -------------------------------------------------------------------------------- /byteSequenceShaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/byteSequenceShaper.go -------------------------------------------------------------------------------- /decompressionShaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/decompressionShaper.go -------------------------------------------------------------------------------- /defragmenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/defragmenter.go -------------------------------------------------------------------------------- /encryptionShaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/encryptionShaper.go -------------------------------------------------------------------------------- /fragment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/fragment.go -------------------------------------------------------------------------------- /fragmentationShaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/fragmentationShaper.go -------------------------------------------------------------------------------- /headerShaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/headerShaper.go -------------------------------------------------------------------------------- /protean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/protean.go -------------------------------------------------------------------------------- /utransformers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatorFoundation/protean/HEAD/utransformers.go --------------------------------------------------------------------------------