golang.org/x/crypto/ssh.userAuthFailureMsg.Methods (field)

16 uses

	golang.org/x/crypto/ssh (current package)
		client_auth.go#L350: 				return authPartialSuccess, msg.Methods, nil
		client_auth.go#L352: 			return authFailure, msg.Methods, nil
		client_auth.go#L436: 				return authPartialSuccess, msg.Methods, nil
		client_auth.go#L438: 			return authFailure, msg.Methods, nil
		client_auth.go#L603: 				return authPartialSuccess, msg.Methods, nil
		client_auth.go#L605: 			return authFailure, msg.Methods, nil
		messages.go#L162: 	Methods        []string `sshtype:"51"`
		server.go#L639: 			failureMsg.Methods = append(failureMsg.Methods, "password")
		server.go#L642: 			failureMsg.Methods = append(failureMsg.Methods, "publickey")
		server.go#L645: 			failureMsg.Methods = append(failureMsg.Methods, "keyboard-interactive")
		server.go#L649: 			failureMsg.Methods = append(failureMsg.Methods, "gssapi-with-mic")
		server.go#L652: 		if len(failureMsg.Methods) == 0 {