mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
73571e4689
full diff: 6861f17f15
...v0.8.0-rc2
- dockerfile: rename experimental channel to labs
- dockerfile build: fix not exit when meet error in load config metadata
- copy containerd.UnknownExitStatus to local const to reduce dependency graph in client
- executor: switch to docker seccomp profile
- add retry handlers to push/pull
- SSH-based auth for llb.Git operations
- Allow gateway exec-ing into a failed solve with an exec op
- Fix parsing ssh-based git sources
- Fix sshkeyscan to work with ipv6
- fix assumption that ssh port must be 2 digits
- vendor: github.com/Microsoft/go-winio v0.4.15
- vendor: github.com/tonistiigi/fsutil v0.0.0-20201103201449-0834f99b7b85
- vendor: containerd v1.4.1-0.20201117152358-0edc412565dc
- vendor: golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
21 lines
919 B
Go
21 lines
919 B
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
/*
|
|
Package ssh implements an SSH client and server.
|
|
|
|
SSH is a transport security protocol, an authentication protocol and a
|
|
family of application protocols. The most typical application level
|
|
protocol is a remote shell and this is specifically implemented. However,
|
|
the multiplexed nature of SSH is exposed to users that wish to support
|
|
others.
|
|
|
|
References:
|
|
[PROTOCOL.certkeys]: http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/PROTOCOL.certkeys?rev=HEAD
|
|
[SSH-PARAMETERS]: http://www.iana.org/assignments/ssh-parameters/ssh-parameters.xml#ssh-parameters-1
|
|
|
|
This package does not fall under the stability promise of the Go language itself,
|
|
so its API may be changed when pressing needs arise.
|
|
*/
|
|
package ssh // import "golang.org/x/crypto/ssh"
|