12345678910111213141516171819202122232425262728293031323334 |
- package crypt
- import (
- "crypto/tls"
- "net"
- "os"
- "github.com/astaxie/beego/logs"
- )
- var pemPath, keyPath string
- func InitTls(pem, key string) {
- pemPath = pem
- keyPath = key
- }
- func NewTlsServerConn(conn net.Conn) net.Conn {
- cert, err := tls.LoadX509KeyPair(pemPath, keyPath)
- if err != nil {
- logs.Error(err)
- os.Exit(0)
- return nil
- }
- config := &tls.Config{Certificates: []tls.Certificate{cert}}
- return tls.Server(conn, config)
- }
- func NewTlsClientConn(conn net.Conn) net.Conn {
- conf := &tls.Config{
- InsecureSkipVerify: true,
- }
- return tls.Client(conn, conf)
- }
|