You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
919 B

  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. Package ssh implements an SSH client and server.
  6. SSH is a transport security protocol, an authentication protocol and a
  7. family of application protocols. The most typical application level
  8. protocol is a remote shell and this is specifically implemented. However,
  9. the multiplexed nature of SSH is exposed to users that wish to support
  10. others.
  11. References:
  12. [PROTOCOL.certkeys]: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.certkeys?rev=HEAD
  13. [SSH-PARAMETERS]: http://www.iana.org/assignments/ssh-parameters/ssh-parameters.xml#ssh-parameters-1
  14. This package does not fall under the stability promise of the Go language itself,
  15. so its API may be changed when pressing needs arise.
  16. */
  17. package ssh // import "golang.org/x/crypto/ssh"