Home
last modified time | relevance | path

Searched refs:sshbuf_get (Results 1 – 7 of 7) sorted by relevance

/external/openssh/
Dbuffer.c66 if ((ret = sshbuf_get(buffer, buf, len)) != 0) { in buffer_get_ret()
Dsshbuf-getput-basic.c32 sshbuf_get(struct sshbuf *buf, void *v, size_t len) in sshbuf_get() function
230 (r = sshbuf_get(buf, p, len)) != 0) in sshbuf_get_stringb()
Dsshbuf.h169 int sshbuf_get(struct sshbuf *buf, void *v, size_t len);
Dauthfd.c420 if ((r = sshbuf_get(msg, response, 16)) != 0) in ssh_decrypt_challenge()
Dssh-agent.c322 if ((r = sshbuf_get(e->request, session_id, sizeof(session_id))) != 0 || in process_authentication_challenge1()
Dpacket.c2639 (r = sshbuf_get(b, &enc->cipher, sizeof(enc->cipher))) != 0 || in newkeys_from_blob()
2885 return sshbuf_get(ssh->state->incoming_packet, valp, len); in sshpkt_get()
/external/openssh/regress/unittests/sshbuf/
Dtest_sshbuf_getput_basic.c92 ASSERT_INT_EQ(sshbuf_get(p1, d2, 4), 0); in sshbuf_getput_basic_tests()
99 r = sshbuf_get(p1, d2, 4); in sshbuf_getput_basic_tests()