type golang.org/x/crypto/ssh.ClientConfig

26 uses

	golang.org/x/crypto/ssh (current package)
		client.go#L71: func NewClientConn(c net.Conn, addr string, config *ClientConfig) (Conn, <-chan NewChannel, <-chan *Request, error) {
		client.go#L93: func (c *connection) clientHandshake(dialAddress string, config *ClientConfig) error {
		client.go#L172: func Dial(network, addr string, config *ClientConfig) (*Client, error) {
		client.go#L197: type ClientConfig struct {
		client_auth.go#L23: func (c *connection) clientAuthenticate(config *ClientConfig) error {
		handshake.go#L123: func newClientTransport(conn keyingTransport, clientVersion, serverVersion []byte, config *ClientConfig, dialAddr string, addr net.Addr) *handshakeTransport {

	github.com/go-git/go-git/v5/plumbing/transport/ssh
		auth_method.go#L30: 	ClientConfig() (*ssh.ClientConfig, error)
		auth_method.go#L60: func (a *KeyboardInteractive) ClientConfig() (*ssh.ClientConfig, error) {
		auth_method.go#L61: 	return a.SetHostKeyCallback(&ssh.ClientConfig{
		auth_method.go#L84: func (a *Password) ClientConfig() (*ssh.ClientConfig, error) {
		auth_method.go#L85: 	return a.SetHostKeyCallback(&ssh.ClientConfig{
		auth_method.go#L107: func (a *PasswordCallback) ClientConfig() (*ssh.ClientConfig, error) {
		auth_method.go#L108: 	return a.SetHostKeyCallback(&ssh.ClientConfig{
		auth_method.go#L168: func (a *PublicKeys) ClientConfig() (*ssh.ClientConfig, error) {
		auth_method.go#L169: 	return a.SetHostKeyCallback(&ssh.ClientConfig{
		auth_method.go#L229: func (a *PublicKeysCallback) ClientConfig() (*ssh.ClientConfig, error) {
		auth_method.go#L230: 	return a.SetHostKeyCallback(&ssh.ClientConfig{
		auth_method.go#L312: func (m *HostKeyCallbackHelper) SetHostKeyCallback(cfg *ssh.ClientConfig) (*ssh.ClientConfig, error) {
		common.go#L30: func NewClient(config *ssh.ClientConfig) transport.Transport {
		common.go#L43: 	config *ssh.ClientConfig
		common.go#L65: 	config    *ssh.ClientConfig
		common.go#L135: func dial(network, addr string, config *ssh.ClientConfig) (*ssh.Client, error) {
		common.go#L211: func overrideConfig(overrides *ssh.ClientConfig, c *ssh.ClientConfig) {
		common.go#L227: 	*c = vc.Interface().(ssh.ClientConfig)