Russ Cox | 470549d | 2012-01-25 15:31:12 -0500 | [diff] [blame] | 1 | // Copyright 2011 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | /* |
| 6 | Package ssh implements an SSH client and server. |
| 7 | |
| 8 | SSH is a transport security protocol, an authentication protocol and a |
| 9 | family of application protocols. The most typical application level |
| 10 | protocol is a remote shell and this is specifically implemented. However, |
| 11 | the multiplexed nature of SSH is exposed to users that wish to support |
| 12 | others. |
Jonathan Pittman | 54c65ae | 2012-12-14 10:11:06 -0500 | [diff] [blame] | 13 | |
| 14 | References: |
| 15 | [PROTOCOL.certkeys]: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.certkeys |
| 16 | [PROTOCOL.agent]: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.agent |
| 17 | [SSH-PARAMETERS]: http://www.iana.org/assignments/ssh-parameters/ssh-parameters.xml#ssh-parameters-1 |
Russ Cox | 470549d | 2012-01-25 15:31:12 -0500 | [diff] [blame] | 18 | */ |
| 19 | package ssh |