# README
TLS - Simple TLS Client/Server
Installation
To install the package, run:
go get github.com/go-zoox/tls
Getting Started
// client
import (
"testing"
"github.com/go-zoox/tls"
)
func main(t *testing.T) {
// @TODO
// 1. send negotiate to server
// 2. exchange data with negotiate secret
}
// server
func main(t *testing.T) {
// 1. wait for negotiate from client
// 2. exchange data with negotiate secret
}
License
GoZoox is released under the MIT License.
# Variables
Version is the current version of the package.