Merge branch 'master' of ssh://blitter.com/var/git/hkexsh

This commit is contained in:
Russ Magee 2018-12-08 21:54:29 -08:00
commit 4b059242d9
3 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,4 @@
// Package hkexsh - common constants for the HKExSh
// Package hkexsh - a secure terminal client/server written from scratch in Go
//
// Copyright (c) 2017-2018 Russell Magee
// Licensed under the terms of the MIT license (see LICENSE.mit in this
@ -7,6 +7,8 @@
// golang implementation by Russ Magee (rmagee_at_gmail.com)
package hkexsh
// common constants for the HKExSh
// Version string returned by tools
const Version = "0.7pre (NO WARRANTY)"

View File

@ -1,4 +1,6 @@
// Authentication routines for the HKExSh
package hkexsh
// Package hkexsh - a secure terminal client/server written from scratch in Go
//
// Copyright (c) 2017-2018 Russell Magee
// Licensed under the terms of the MIT license (see LICENSE.mit in this
@ -6,7 +8,7 @@
//
// golang implementation by Russ Magee (rmagee_at_gmail.com)
package hkexsh
// Authentication routines for the HKExSh
import (
"bytes"

View File

@ -1,4 +1,6 @@
// Session info/routines for the HKExSh
package hkexsh
// Package hkexsh - a secure terminal client/server written from scratch in Go
//
// Copyright (c) 2017-2018 Russell Magee
// Licensed under the terms of the MIT license (see LICENSE.mit in this
@ -6,7 +8,7 @@
//
// golang implementation by Russ Magee (rmagee_at_gmail.com)
package hkexsh
// Session info/routines for the HKExSh
import (
"fmt"