Commit 2707a8f0 authored by ginuerzh's avatar ginuerzh

v2.11.1

parent d11f8248
......@@ -20,7 +20,7 @@ import (
)
// Version is the gost version.
const Version = "2.11.0"
const Version = "2.11.1"
// Debug is a flag that enables the debug log.
var Debug bool
......
name: gost
type: app
version: '2.11.0'
version: '2.11.1'
title: GO Simple Tunnel
summary: A simple security tunnel written in golang
description: |
......
......@@ -31,6 +31,7 @@ var (
errSessionDead = errors.New("session is dead")
)
// ParseSSHKeyFile parses ssh key file.
func ParseSSHKeyFile(fp string) (ssh.Signer, error) {
key, err := ioutil.ReadFile(fp)
if err != nil {
......@@ -39,6 +40,7 @@ func ParseSSHKeyFile(fp string) (ssh.Signer, error) {
return ssh.ParsePrivateKey(key)
}
// ParseSSHAuthorizedKeysFile parses ssh Authorized Keys file.
func ParseSSHAuthorizedKeysFile(fp string) (map[string]bool, error) {
authorizedKeysBytes, err := ioutil.ReadFile(fp)
if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment