Home
last modified time | relevance | path

Searched refs:sshbuf_put_cstring (Results 1 – 24 of 24) sorted by relevance

/external/openssh/
Dkexecdh.c70 if ((r = sshbuf_put_cstring(b, client_version_string)) != 0 || in kex_ecdh_hash()
71 (r = sshbuf_put_cstring(b, server_version_string)) != 0 || in kex_ecdh_hash()
Dkexdh.c63 if ((r = sshbuf_put_cstring(b, client_version_string)) != 0 || in kex_dh_hash()
64 (r = sshbuf_put_cstring(b, server_version_string)) != 0 || in kex_dh_hash()
Dkexgex.c67 if ((r = sshbuf_put_cstring(b, client_version_string)) != 0 || in kexgex_hash()
68 (r = sshbuf_put_cstring(b, server_version_string)) != 0 || in kexgex_hash()
Dkexc25519.c104 if ((r = sshbuf_put_cstring(b, client_version_string)) < 0 || in kex_c25519_hash()
105 (r = sshbuf_put_cstring(b, server_version_string)) < 0 || in kex_c25519_hash()
Dsftp-server.c531 if ((r = sshbuf_put_cstring(msg, in send_status()
533 (r = sshbuf_put_cstring(msg, "")) != 0) in send_status()
588 if ((r = sshbuf_put_cstring(msg, stats[i].name)) != 0 || in send_names()
589 (r = sshbuf_put_cstring(msg, stats[i].long_name)) != 0 || in send_names()
660 (r = sshbuf_put_cstring(msg, "posix-rename@openssh.com")) != 0 || in process_init()
661 (r = sshbuf_put_cstring(msg, "1")) != 0 || /* version */ in process_init()
663 (r = sshbuf_put_cstring(msg, "statvfs@openssh.com")) != 0 || in process_init()
664 (r = sshbuf_put_cstring(msg, "2")) != 0 || /* version */ in process_init()
666 (r = sshbuf_put_cstring(msg, "fstatvfs@openssh.com")) != 0 || in process_init()
667 (r = sshbuf_put_cstring(msg, "2")) != 0 || /* version */ in process_init()
[all …]
Dsftp-client.c532 (r = sshbuf_put_cstring(msg, path)) != 0) in do_lsreaddir()
880 (r = sshbuf_put_cstring(msg, in do_rename()
888 if ((r = sshbuf_put_cstring(msg, oldpath)) != 0 || in do_rename()
889 (r = sshbuf_put_cstring(msg, newpath)) != 0) in do_rename()
924 (r = sshbuf_put_cstring(msg, "hardlink@openssh.com")) != 0 || in do_hardlink()
925 (r = sshbuf_put_cstring(msg, oldpath)) != 0 || in do_hardlink()
926 (r = sshbuf_put_cstring(msg, newpath)) != 0) in do_hardlink()
960 (r = sshbuf_put_cstring(msg, oldpath)) != 0 || in do_symlink()
961 (r = sshbuf_put_cstring(msg, newpath)) != 0) in do_symlink()
993 (r = sshbuf_put_cstring(msg, "fsync@openssh.com")) != 0 || in do_fsync()
[all …]
Dauthfd.c190 (r = sshbuf_put_cstring(msg, password)) != 0) in ssh_lock_agent()
497 (r = sshbuf_put_cstring(b, comment)) != 0) in ssh_encode_identity_rsa1()
510 (r = sshbuf_put_cstring(b, comment)) != 0) in ssh_encode_identity_ssh2()
666 (r = sshbuf_put_cstring(msg, reader_id)) != 0 || in ssh_update_card()
667 (r = sshbuf_put_cstring(msg, pin)) != 0) in ssh_update_card()
Dsshkey.c761 if ((ret = sshbuf_put_cstring(b, typename)) != 0 || in to_blob_buf()
772 if ((ret = sshbuf_put_cstring(b, typename)) != 0 || in to_blob_buf()
773 (ret = sshbuf_put_cstring(b, in to_blob_buf()
782 if ((ret = sshbuf_put_cstring(b, typename)) != 0 || in to_blob_buf()
791 if ((ret = sshbuf_put_cstring(b, typename)) != 0 || in to_blob_buf()
2396 if ((ret = sshbuf_put_cstring(cert, sshkey_ssh_name(k))) != 0) in sshkey_certify()
2416 if ((ret = sshbuf_put_cstring(cert, in sshkey_certify()
2442 (ret = sshbuf_put_cstring(cert, k->cert->key_id)) != 0) in sshkey_certify()
2450 if ((ret = sshbuf_put_cstring(principals, in sshkey_certify()
2546 if ((r = sshbuf_put_cstring(b, sshkey_ssh_name(key))) != 0) in sshkey_private_serialize()
[all …]
Dssh-ed25519.c69 if ((r = sshbuf_put_cstring(b, "ssh-ed25519")) != 0 || in ssh_ed25519_sign()
Dsshconnect2.c1670 (r = sshbuf_put_cstring(b, authctxt->server_user)) != 0 || in userauth_hostbased()
1671 (r = sshbuf_put_cstring(b, service)) != 0 || in userauth_hostbased()
1672 (r = sshbuf_put_cstring(b, authctxt->method->name)) != 0 || in userauth_hostbased()
1673 (r = sshbuf_put_cstring(b, key_ssh_name(private))) != 0 || in userauth_hostbased()
1675 (r = sshbuf_put_cstring(b, chost)) != 0 || in userauth_hostbased()
1676 (r = sshbuf_put_cstring(b, authctxt->local_user)) != 0) { in userauth_hostbased()
Dssh-ecdsa.c86 if ((ret = sshbuf_put_cstring(b, sshkey_ssh_name_plain(key))) != 0 || in ssh_ecdsa_sign()
Dbufaux.c216 if ((ret = sshbuf_put_cstring(buffer, s)) != 0) in buffer_put_cstring()
Dssh-dss.c106 if ((ret = sshbuf_put_cstring(b, "ssh-dss")) != 0 || in ssh_dss_sign()
Dssh-rsa.c94 if ((ret = sshbuf_put_cstring(b, "ssh-rsa")) != 0 || in ssh_rsa_sign()
Dsshbuf.h189 int sshbuf_put_cstring(struct sshbuf *buf, const char *v);
Dpacket.c2384 (r = sshbuf_put_cstring(m, kex->client_version_string)) != 0 || in kex_to_blob()
2385 (r = sshbuf_put_cstring(m, kex->server_version_string)) != 0) in kex_to_blob()
2414 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 || in newkeys_to_blob()
2422 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 || in newkeys_to_blob()
2429 (r = sshbuf_put_cstring(b, comp->name)) != 0) in newkeys_to_blob()
2751 return sshbuf_put_cstring(ssh->state->outgoing_packet, v); in sshpkt_put_cstring()
Dsshbuf-getput-basic.c364 sshbuf_put_cstring(struct sshbuf *buf, const char *v) in sshbuf_put_cstring() function
Dkrl.c690 if ((r = sshbuf_put_cstring(sect, rki->key_id)) != 0) in revoked_certs_generate()
729 (r = sshbuf_put_cstring(buf, krl->comment)) != 0) in ssh_krl_to_blob()
Dssh-keygen.c1488 if ((r = sshbuf_put_cstring(c, name)) != 0 || in add_flag_option()
1502 if ((r = sshbuf_put_cstring(b, value)) != 0 || in add_string_option()
1503 (r = sshbuf_put_cstring(c, name)) != 0 || in add_string_option()
Dkex.c239 if ((r = sshbuf_put_cstring(b, proposal[i])) != 0) in kex_prop2buf()
Dserverloop.c1198 if ((r = sshbuf_put_cstring(sigbuf, in server_input_hostkeys_prove()
Dssh-agent.c281 if ((r = sshbuf_put_cstring(msg, id->comment)) != 0) in process_request_identities()
Dmonitor.c728 if ((r = sshbuf_put_cstring(sigbuf, proof_req)) != 0 || in mm_answer_sign()
Dclientloop.c2287 if ( (r = sshbuf_put_cstring(signdata, in client_global_hostkeys_private_confirm()