mirror of https://gogs.blitter.com/RLabs/xs
Merge branch 'master' of ssh://blitter.com/var/git/hkexsh
This commit is contained in:
commit
4b059242d9
|
@ -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
|
// Copyright (c) 2017-2018 Russell Magee
|
||||||
// Licensed under the terms of the MIT license (see LICENSE.mit in this
|
// 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)
|
// golang implementation by Russ Magee (rmagee_at_gmail.com)
|
||||||
package hkexsh
|
package hkexsh
|
||||||
|
|
||||||
|
// common constants for the HKExSh
|
||||||
|
|
||||||
// Version string returned by tools
|
// Version string returned by tools
|
||||||
const Version = "0.7pre (NO WARRANTY)"
|
const Version = "0.7pre (NO WARRANTY)"
|
||||||
|
|
||||||
|
|
|
@ -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
|
// Copyright (c) 2017-2018 Russell Magee
|
||||||
// Licensed under the terms of the MIT license (see LICENSE.mit in this
|
// 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)
|
// golang implementation by Russ Magee (rmagee_at_gmail.com)
|
||||||
|
|
||||||
package hkexsh
|
// Authentication routines for the HKExSh
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
|
@ -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
|
// Copyright (c) 2017-2018 Russell Magee
|
||||||
// Licensed under the terms of the MIT license (see LICENSE.mit in this
|
// 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)
|
// golang implementation by Russ Magee (rmagee_at_gmail.com)
|
||||||
|
|
||||||
package hkexsh
|
// Session info/routines for the HKExSh
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
Loading…
Reference in New Issue