Rearranged godoc pkg comments

Signed-off-by: Russ Magee <rmagee@gmail.com>
This commit is contained in:
Russ Magee 2018-12-08 11:29:58 -08:00
parent 55fdffbd9e
commit da78f37e42
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"