| /src/crypto/external/bsd/openssh/dist/ |
| dispatch.h | 38 struct ssh; 40 typedef int dispatch_fn(int, u_int32_t, struct ssh *); 42 int dispatch_protocol_error(int, u_int32_t, struct ssh *); 43 int dispatch_protocol_ignore(int, u_int32_t, struct ssh *); 44 void ssh_dispatch_init(struct ssh *, dispatch_fn *); 45 void ssh_dispatch_set(struct ssh *, int, dispatch_fn *); 46 void ssh_dispatch_range(struct ssh *, u_int, u_int, dispatch_fn *); 47 int ssh_dispatch_run(struct ssh *, int, volatile sig_atomic_t *); 48 void ssh_dispatch_run_fatal(struct ssh *, int, volatile sig_atomic_t *);
|
| serverloop.h | 13 * called by a name other than "ssh" or "Secure Shell". 25 struct ssh; 27 void server_loop2(struct ssh *, Authctxt *);
|
| packet.h | 14 * called by a name other than "ssh" or "Secure Shell". 49 struct ssh { struct 88 typedef int (ssh_packet_hook_fn)(struct ssh *, struct sshbuf *, 91 struct ssh *ssh_alloc_session_state(void); 92 struct ssh *ssh_packet_set_connection(struct ssh *, int, int); 93 void ssh_packet_set_timeout(struct ssh *, int, int); 94 int ssh_packet_stop_discard(struct ssh *); 95 int ssh_packet_connection_af(struct ssh *); 96 void ssh_packet_set_nonblocking(struct ssh *); [all...] |
| clientloop.h | 13 * called by a name other than "ssh" or "Secure Shell". 41 struct ssh; 44 int client_loop(struct ssh *, int, int, int); 45 int client_x11_get_proto(struct ssh *, const char *, const char *, 47 void client_session2_setup(struct ssh *, int, int, int, 49 char *client_request_tun_fwd(struct ssh *, int, int, int, 55 void client_filter_cleanup(struct ssh *, int, void *); 56 int client_simple_escape_filter(struct ssh *, Channel *, const char *, int); 59 typedef void global_confirm_cb(struct ssh *, int, u_int32_t, void *); 64 void client_expect_confirm(struct ssh *, int, const char * [all...] |
| ssh_api.h | 30 #include "ssh.h" 38 /* public SSH API functions */ 41 * ssh_init() create a ssh connection object with given (optional) 44 int ssh_init(struct ssh **, int is_server, struct kex_params *kex_params); 47 * release ssh connection state. 49 void ssh_free(struct ssh *); 54 void ssh_set_app_data(struct ssh *, void *); 55 void *ssh_get_app_data(struct ssh *); 58 * ssh_add_hostkey() registers a private/public hostkey for an ssh 65 int ssh_add_hostkey(struct ssh *ssh, struct sshkey *key) [all...] |
| channels.h | 13 * called by a name other than "ssh" or "Secure Shell". 90 struct ssh; 94 typedef void channel_open_fn(struct ssh *, int, int, void *); 95 typedef void channel_callback_fn(struct ssh *, int, int, void *); 96 typedef int channel_infilter_fn(struct ssh *, struct Channel *, const char *, 98 typedef void channel_filter_cleanup_fn(struct ssh *, int, void *); 99 typedef u_char *channel_outfilter_fn(struct ssh *, struct Channel *, 103 typedef void channel_confirm_cb(struct ssh *, int, struct Channel *, void *); 104 typedef void channel_confirm_abandon_cb(struct ssh *, struct Channel *, void *); 121 typedef int mux_callback_fn(struct ssh *, struct Channel *) [all...] |
| dispatch.c | 42 dispatch_protocol_error(int type, u_int32_t seq, struct ssh *ssh) 47 if ((r = sshpkt_start(ssh, SSH2_MSG_UNIMPLEMENTED)) != 0 || 48 (r = sshpkt_put_u32(ssh, seq)) != 0 || 49 (r = sshpkt_send(ssh)) != 0 || 50 (r = ssh_packet_write_wait(ssh)) < 0) 51 sshpkt_fatal(ssh, r, "%s", __func__); 56 dispatch_protocol_ignore(int type, u_int32_t seq, struct ssh *ssh) 63 ssh_dispatch_init(struct ssh *ssh, dispatch_fn *dflt [all...] |
| ssh_api.c | 43 int _ssh_exchange_banner(struct ssh *); 44 int _ssh_send_banner(struct ssh *, struct sshbuf *); 45 int _ssh_read_banner(struct ssh *, struct sshbuf *); 46 int _ssh_order_hostkeyalgs(struct ssh *); 47 int _ssh_verify_host_key(struct sshkey *, struct ssh *); 48 struct sshkey *_ssh_host_public_key(int, int, struct ssh *); 49 struct sshkey *_ssh_host_private_key(int, int, struct ssh *); 50 int _ssh_host_key_sign(struct ssh *, struct sshkey *, struct sshkey *, 88 ssh_init(struct ssh **sshp, int is_server, struct kex_params *kex_params) 92 struct ssh *ssh local [all...] |
| auth2-gss.c | 49 #include "ssh-gss.h" 57 static int input_gssapi_token(int type, u_int32_t plen, struct ssh *ssh); 58 static int input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh); 59 static int input_gssapi_exchange_complete(int type, u_int32_t plen, struct ssh *ssh); 60 static int input_gssapi_errtok(int, u_int32_t, struct ssh *); 67 userauth_gssapi(struct ssh *ssh, const char *method [all...] |
| packet.c | 15 * called by a name other than "ssh" or "Secure Shell". 81 #include "ssh.h" 224 struct ssh * 227 struct ssh *ssh = NULL; local 230 if ((ssh = calloc(1, sizeof(*ssh))) == NULL || 232 (ssh->kex = kex_new()) == NULL || 239 TAILQ_INIT(&ssh->private_keys); 240 TAILQ_INIT(&ssh->public_keys) [all...] |
| auth-pam.h | 29 struct ssh; 31 void start_pam(struct ssh *); 34 void do_pam_session(struct ssh *);
|
| auth2-kbdint.c | 50 userauth_kbdint(struct ssh *ssh, const char *method) 55 if ((r = sshpkt_get_cstring(ssh, &lang, NULL)) != 0 || 56 (r = sshpkt_get_cstring(ssh, &devs, NULL)) != 0 || 57 (r = sshpkt_get_end(ssh)) != 0) 63 authenticated = auth2_challenge(ssh, devs);
|
| serverloop.c | 14 * called by a name other than "ssh" or "Secure Shell". 99 static void server_init_dispatch(struct ssh *); 130 client_alive_check(struct ssh *ssh) 137 ssh_packet_inc_alive_timeouts(ssh) > 139 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id)); 148 if ((channel_id = channel_find_open(ssh)) == -1) { 149 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 || 150 (r = sshpkt_put_cstring(ssh, "keepalive@openssh.com")) 152 (r = sshpkt_put_u8(ssh, 1)) != 0) /* boolean: want reply * [all...] |
| auth2-none.c | 45 #include "ssh-gss.h" 56 userauth_none(struct ssh *ssh, const char *method) 61 if ((r = sshpkt_get_end(ssh)) != 0) 64 return mm_auth_password(ssh, "");
|
| monitor_wrap.h | 38 struct ssh; 50 int mm_sshkey_sign(struct ssh *, struct sshkey *, u_char **, size_t *, 54 struct passwd *mm_getpwnamallow(struct ssh *, const char *); 56 int mm_auth_password(struct ssh *, const char *); 59 int mm_user_key_allowed(struct ssh *ssh, struct passwd *, struct sshkey *, int, 61 int mm_hostbased_key_allowed(struct ssh *, struct passwd *, const char *, 66 void mm_decode_activate_server_options(struct ssh *ssh, struct sshbuf *m); 69 #include "ssh-gss.h [all...] |
| /src/distrib/utils/ssh/ |
| Makefile | 5 PROG= ssh
|
| /src/crypto/external/bsd/openssh/ |
| openssh2netbsd | 44 rm -fr ssh-add ssh scp ssh-agent sshd sftp-server ssh-keygen sftp ssh-keyscan ssh-keysign ssh-pkcs11-helper ssh-sk-helper sshd-session sshd-auth
|
| /src/crypto/external/bsd/openssh/bin/ssh-agent/ |
| Makefile | 5 PROG= ssh-agent 6 SRCS= misc-agent.c ssh-agent.c ssh-pkcs11-client.c 8 COPTS.ssh-agent.c+= ${CC_WNO_FORMAT_TRUNCATION} 9 COPTS.ssh-pkcs11-client.c+= -Wno-error=deprecated-declarations
|
| /src/crypto/external/bsd/openssh/bin/ |
| Makefile | 7 SUBDIR= ssh sshd ssh-add ssh-copy-id ssh-keygen ssh-agent scp \ 8 sftp-server ssh-keysign ssh-keyscan sftp ssh-pkcs11-helper 13 FILESDIR= /etc/ssh
|
| /src/crypto/external/bsd/openssh/bin/ssh-copy-id/ |
| Makefile | 5 SCRIPTS= ssh-copy-id 6 MAN= ssh-copy-id.1
|
| /src/external/bsd/blocklist/etc/ |
| blocklistd.conf | 4 ssh stream * * * 3 6h 13 #[2001:db8::]/32:ssh * * * = * *
|
| /src/crypto/external/bsd/openssh/bin/ssh-add/ |
| Makefile | 5 PROG= ssh-add
|
| /src/crypto/external/bsd/openssh/bin/ssh-keysign/ |
| Makefile | 7 PROG= ssh-keysign 8 SRCS= ssh-keysign.c readconf.c 9 MAN= ssh-keysign.8
|
| /src/crypto/external/bsd/openssh/bin/ssh-pkcs11-helper/ |
| Makefile | 7 PROG= ssh-pkcs11-helper 8 MAN= ssh-pkcs11-helper.8 10 COPTS.ssh-pkcs11-helper.c+= -Wno-error=deprecated-declarations
|
| /src/crypto/external/bsd/openssh/libexec/ssh-sk-helper/ |
| Makefile | 5 PROG= ssh-sk-helper 6 SRCS= ssh-sk-helper.c ssh-sk.c sk-usbhid.c 7 MAN= ssh-sk-helper.8 16 COPTS.ssh-sk.c+= -Wno-error=deprecated-declarations
|