Searched refs:sshbuf_get (Results 1 - 8 of 8) sorted by relevance

/freebsd-10-stable/crypto/openssh/
H A Dbuffer.c66 if ((ret = sshbuf_get(buffer, buf, len)) != 0) {
H A Dsshbuf-getput-basic.c32 sshbuf_get(struct sshbuf *buf, void *v, size_t len) function
230 (r = sshbuf_get(buf, p, len)) != 0)
H A Dsshbuf.h161 int sshbuf_get(struct sshbuf *buf, void *v, size_t len);
H A Dauthfd.c420 if ((r = sshbuf_get(msg, response, 16)) != 0)
H A Dssh_namespace.h747 #define sshbuf_get Fssh_sshbuf_get macro
H A Dpacket.c2630 (r = sshbuf_get(b, &enc->cipher, sizeof(enc->cipher))) != 0 ||
2878 return sshbuf_get(ssh->state->incoming_packet, valp, len);
H A Dssh-agent.c335 if ((r = sshbuf_get(e->request, session_id, sizeof(session_id))) != 0 ||
/freebsd-10-stable/crypto/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_getput_basic.c91 TEST_START("sshbuf_get");
92 ASSERT_INT_EQ(sshbuf_get(p1, d2, 4), 0);
98 TEST_START("sshbuf_get truncated");
99 r = sshbuf_get(p1, d2, 4);

Completed in 180 milliseconds