Symbol: sshbuf_putb
crypto/openssh/auth2-pubkey.c
192
if ((r = sshbuf_putb(b, ssh->kex->session_id)) != 0)
crypto/openssh/channels.c
3269
(r = sshbuf_putb(modified, original)) != 0) {
crypto/openssh/channels.c
3298
(r = sshbuf_putb(modified, original)) != 0) {
crypto/openssh/kexgen.c
72
(r = sshbuf_putb(b, client_kexinit)) != 0 ||
crypto/openssh/kexgen.c
75
(r = sshbuf_putb(b, server_kexinit)) != 0 ||
crypto/openssh/kexgen.c
79
(r = sshbuf_putb(b, shared_secret)) != 0) {
crypto/openssh/kexgex.c
74
(r = sshbuf_putb(b, client_kexinit)) != 0 ||
crypto/openssh/kexgex.c
77
(r = sshbuf_putb(b, server_kexinit)) != 0 ||
crypto/openssh/misc.c
2239
(r = sshbuf_putb(buf, arg)) != 0 ||
crypto/openssh/packet.c
1268
(r = sshbuf_putb(state->outgoing_packet,
crypto/openssh/packet.c
1814
if ((r = sshbuf_putb(state->incoming_packet,
crypto/openssh/packet.c
2706
return sshbuf_putb(ssh->state->outgoing_packet, b);
crypto/openssh/packet.c
2890
if ((r = sshbuf_putb(state->output,
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
421
ASSERT_INT_EQ(sshbuf_putb(p2, p1), 0);
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
92
ASSERT_INT_EQ(sshbuf_putb(b, pk), 0); /* public key serialisation */
crypto/openssh/ssh-agent.c
1778
if ((r = sshbuf_putb(e->session_ids[i].sid, sid)) != 0)
crypto/openssh/ssh-agent.c
675
(r = sshbuf_putb(msg, keys)) != 0)
crypto/openssh/ssh-ecdsa-sk.c
367
(ret = sshbuf_putb(original_signed, webauthn_exts)) != 0 ||
crypto/openssh/ssh-sk-client.c
180
(r = sshbuf_putb(req, msg)) != 0) {
crypto/openssh/ssh-sk-client.c
369
if (attest != NULL && (r = sshbuf_putb(attest, abuf)) != 0) {
crypto/openssh/ssh_api.c
432
if ((r = sshbuf_putb(ssh_packet_get_output(ssh), banner)) != 0)
crypto/openssh/sshbuf-misc.c
245
r = sshbuf_putb(b64, b);
crypto/openssh/sshbuf.h
169
int sshbuf_putb(struct sshbuf *buf, const struct sshbuf *v);
crypto/openssh/sshconnect2.c
1410
if ((r = sshbuf_putb(b, ssh->kex->session_id)) != 0)
crypto/openssh/sshkey.c
1546
if ((r = sshbuf_putb(to->certblob, from->certblob)) != 0 ||
crypto/openssh/sshkey.c
1547
(r = sshbuf_putb(to->critical, from->critical)) != 0 ||
crypto/openssh/sshkey.c
1548
(r = sshbuf_putb(to->extensions, from->extensions)) != 0)
crypto/openssh/sshkey.c
1877
if ((ret = sshbuf_putb(key->cert->certblob, certbuf)) != 0)
crypto/openssh/sshkey.c
1941
if ((ret = sshbuf_putb(key->cert->critical, crit)) != 0 ||
crypto/openssh/sshkey.c
1943
(ret = sshbuf_putb(key->cert->extensions, exts)) != 0))
crypto/openssh/sshkey.c
2585
r = sshbuf_putb(buf, b);
crypto/openssh/sshkey.c
3379
r = sshbuf_putb(buf, blob);
crypto/openssh/sshkey.c
892
if ((ret = sshbuf_putb(b, key->cert->certblob)) != 0)