Symbol: sshbuf_putb
crypto/openssh/auth2-pubkey.c
197
if ((r = sshbuf_putb(b, ssh->kex->session_id)) != 0)
crypto/openssh/channels.c
3185
(r = sshbuf_putb(modified, original)) != 0) {
crypto/openssh/channels.c
3214
(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
2174
(r = sshbuf_putb(buf, arg)) != 0 ||
crypto/openssh/packet.c
1206
(r = sshbuf_putb(state->outgoing_packet,
crypto/openssh/packet.c
1749
if ((r = sshbuf_putb(state->incoming_packet,
crypto/openssh/packet.c
2608
return sshbuf_putb(ssh->state->outgoing_packet, b);
crypto/openssh/packet.c
2792
if ((r = sshbuf_putb(state->output,
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
423
ASSERT_INT_EQ(sshbuf_putb(p2, p1), 0);
crypto/openssh/regress/unittests/sshkey/test_sshkey.c
94
ASSERT_INT_EQ(sshbuf_putb(b, pk), 0); /* public key serialisation */
crypto/openssh/ssh-agent.c
1796
if ((r = sshbuf_putb(e->session_ids[i].sid, sid)) != 0)
crypto/openssh/ssh-agent.c
677
(r = sshbuf_putb(msg, keys)) != 0)
crypto/openssh/ssh-ecdsa-sk.c
365
(ret = sshbuf_putb(original_signed, webauthn_exts)) != 0 ||
crypto/openssh/ssh-sk-client.c
162
(r = sshbuf_putb(req, msg)) != 0) {
crypto/openssh/ssh-sk-client.c
351
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
208
r = sshbuf_putb(b64, b);
crypto/openssh/sshbuf.h
148
int sshbuf_putb(struct sshbuf *buf, const struct sshbuf *v);
crypto/openssh/sshconnect2.c
1403
if ((r = sshbuf_putb(b, ssh->kex->session_id)) != 0)
crypto/openssh/sshkey-xmss.c
936
if ((r = sshbuf_putb(padded, b)) != 0)
crypto/openssh/sshkey-xmss.c
951
if ((r = sshbuf_putb(encoded, padded)) != 0)
crypto/openssh/sshkey.c
1544
if ((r = sshbuf_putb(to->certblob, from->certblob)) != 0 ||
crypto/openssh/sshkey.c
1545
(r = sshbuf_putb(to->critical, from->critical)) != 0 ||
crypto/openssh/sshkey.c
1546
(r = sshbuf_putb(to->extensions, from->extensions)) != 0)
crypto/openssh/sshkey.c
1876
if ((ret = sshbuf_putb(key->cert->certblob, certbuf)) != 0)
crypto/openssh/sshkey.c
1940
if ((ret = sshbuf_putb(key->cert->critical, crit)) != 0 ||
crypto/openssh/sshkey.c
1942
(ret = sshbuf_putb(key->cert->extensions, exts)) != 0))
crypto/openssh/sshkey.c
2584
r = sshbuf_putb(buf, b);
crypto/openssh/sshkey.c
3389
r = sshbuf_putb(buf, blob);
crypto/openssh/sshkey.c
896
if ((ret = sshbuf_putb(b, key->cert->certblob)) != 0)