├── .gitignore ├── LICENSE ├── ReadMe.md ├── client ├── config.go ├── encrypt.go ├── net.go └── tests │ ├── file.txt │ └── key.pub └── sendto.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/ReadMe.md -------------------------------------------------------------------------------- /client/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/client/config.go -------------------------------------------------------------------------------- /client/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/client/encrypt.go -------------------------------------------------------------------------------- /client/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/client/net.go -------------------------------------------------------------------------------- /client/tests/file.txt: -------------------------------------------------------------------------------- 1 | Encrypt me - hello world -------------------------------------------------------------------------------- /client/tests/key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/client/tests/key.pub -------------------------------------------------------------------------------- /sendto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/send-to/sendto/HEAD/sendto.go --------------------------------------------------------------------------------