Categorygithub.com/go-zoox/tls
modulepackage
1.0.2
Repository: https://github.com/go-zoox/tls.git
Documentation: pkg.go.dev

# README

TLS - Simple TLS Client/Server

PkgGoDev Build Status Go Report Card Coverage Status GitHub issues Release

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.

# Packages

No description provided by the author
No description provided by the author

# Functions

NewClient creates a new TLS client.
NewServer creates a new TLS server.

# Variables

Version is the current version of the package.