| /src/external/apache2/llvm/dist/libcxx/utils/ |
| ssh.py | 32 def ssh(args, command): function 33 cmd = ['ssh', '-oBatchMode=yes'] 51 parser.add_argument('--extra-ssh-args', type=str, required=False) 61 tmp = subprocess.check_output(ssh(args, 'mktemp -d {}/libcxx.XXXXXXXXXX'.format(args.tempdir)), universal_newlines=True).strip() 109 # Execute the command through SSH in the temporary directory, with the 119 # Finally, SSH to the remote host and execute all the commands. 120 rc = subprocess.call(ssh(args, ' && '.join(remoteCommands))) 125 subprocess.check_call(ssh(args, 'rm -r {}'.format(tmp)))
|
| /src/external/apache2/llvm/dist/llvm/utils/ |
| remote-exec.py | 27 def ssh(args, command): function 28 cmd = ['ssh', '-oBatchMode=yes'] 45 parser.add_argument('--extra-ssh-args', type=str, required=False) 74 ssh(args, 'mktemp -d /tmp/llvm.XXXXXXXXXX'), 119 # Execute the command through SSH in the temporary directory, with the 131 # Finally, SSH to the remote host and execute all the commands. 132 rc = subprocess.call(ssh(args, ' && '.join(remoteCommands))) 137 subprocess.check_call(ssh(args, 'rm -r {}'.format(tmp)))
|
| /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/ |
| main.c | 143 int ssh; local 149 ssh = 0; 155 ssh = 1; 171 if (ssh) { 173 fprintf(stderr, "can't read ssh keyring\n");
|
| libverify.c | 281 unsigned ssh; /* using ssh keys */ member in struct:pgpv_t 2604 { "ssh-rsa", 7, PUBKEY_RSA_SIGN }, 2605 { "ssh-dss", 7, PUBKEY_DSA }, 2606 { "ssh-dsa", 7, PUBKEY_DSA }, 2624 /* read public key from the ssh pubkey file */ 3221 if (cursor->pgp->ssh) { 3259 /* set up the pubkey keyring from ssh pub key */ 3273 } else if (!read_ssh_file(pgp, &primary, "%s/%s", nonnull_getenv("HOME"), ".ssh/id_rsa.pub")) { 3277 pgp->ssh = 1 [all...] |
| /src/crypto/external/bsd/openssh/dist/ |
| 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...] |
| 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...] |
| sshd-auth.c | 64 #include "ssh.h" 92 #include "ssh-gss.h" 155 struct ssh *the_active_state; 157 /* global key/cert auth options. XXX move to permanent ssh->authctxt? */ 170 static void do_ssh2_kex(struct ssh *); 288 get_hostkey_public_by_type(int type, int nid, struct ssh *ssh) 325 get_hostkey_private_by_type(int type, int nid, struct ssh *ssh) 338 get_hostkey_public_by_index(int ind, struct ssh *ssh 441 struct ssh *ssh = NULL; local [all...] |
| sshd-session.c | 66 #include "ssh.h" 94 #include "ssh-gss.h" 203 struct ssh *the_active_state; 205 /* global key/cert auth options. XXX move to permanent ssh->authctxt? */ 337 privsep_preauth(struct ssh *ssh) 345 pmonitor->m_pkex = &ssh->kex; 359 monitor_child_preauth(ssh, pmonitor); 379 if (ssh_packet_get_connection_in(ssh) != STDIN_FILENO && 380 dup2(ssh_packet_get_connection_in(ssh), STDIN_FILENO) == -1 785 struct ssh *ssh = NULL; local [all...] |
| ssh.c | 1 /* $NetBSD: ssh.c,v 1.48 2025/10/11 15:45:08 christos Exp $ */ 2 /* $OpenBSD: ssh.c,v 1.619 2025/09/25 07:05:11 djm Exp $ */ 8 * Ssh client program. This program can be used to log into a remote machine. 16 * called by a name other than "ssh" or "Secure Shell". 46 __RCSID("$NetBSD: ssh.c,v 1.48 2025/10/11 15:45:08 christos Exp $"); 82 #include "ssh.h" 110 #include "ssh-pkcs11.h" 175 "usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface] [-b bind_address]\n" 182 " ssh [-Q query_option]\n" 187 static int ssh_session2(struct ssh *, const struct ssh_conn_info *) 682 struct ssh *ssh = NULL; local [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...] |