Home
last modified time | relevance | path

Searched refs:sshbuf_get_string_direct (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/crypto/openssh/
H A Dsshbuf-getput-crypto.c101 if (sshbuf_get_string_direct(buf, NULL, NULL) != 0) { in sshbuf_get_ec()
136 if (sshbuf_get_string_direct(buf, NULL, NULL) != 0) { in sshbuf_get_eckey()
H A Dsshbuf.h204 int sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp,
208 #define sshbuf_skip_string(buf) sshbuf_get_string_direct(buf, NULL, NULL)
H A Dentropy.c208 if ((r = sshbuf_get_string_direct(m, &buf, &len)) != 0 in rexec_recv_rng_seed()
H A Dsshbuf-getput-basic.c108 if ((r = sshbuf_get_string_direct(buf, &val, &len)) < 0) in sshbuf_get_string()
125 sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp, size_t *lenp) in sshbuf_get_string_direct() function
H A Dssh-ed25519.c117 (r = sshbuf_get_string_direct(b, &sigblob, &len)) != 0) in ssh_ed25519_verify()
H A Dssh-xmss.c141 (r = sshbuf_get_string_direct(b, &sigblob, &len)) != 0) in ssh_xmss_verify()
H A Dsshkey.c1894 (ret = sshbuf_get_string_direct(b, NULL, NULL)) != 0 || in cert_parse()
1955 if ((ret = sshbuf_get_string_direct(crit, NULL, NULL)) != 0 || in cert_parse()
1956 (ret = sshbuf_get_string_direct(crit, NULL, NULL)) != 0) { in cert_parse()
1963 if ((ret = sshbuf_get_string_direct(exts, NULL, NULL)) != 0 || in cert_parse()
1964 (ret = sshbuf_get_string_direct(exts, NULL, NULL)) != 0) { in cert_parse()
2049 if (sshbuf_get_string_direct(b, NULL, NULL) != 0) { in sshkey_from_blob_internal()
2082 if (sshbuf_get_string_direct(b, NULL, NULL) != 0) { in sshkey_from_blob_internal()
2122 if (sshbuf_get_string_direct(b, NULL, NULL) != 0) { in sshkey_from_blob_internal()
2174 if (sshbuf_get_string_direct(b, NULL, NULL) != 0) { in sshkey_from_blob_internal()
2196 if (sshbuf_get_string_direct(b, NULL, NULL) != 0) { in sshkey_from_blob_internal()
H A Dkrl.c821 if ((r = sshbuf_get_string_direct(buf, &blob, &blen)) != 0 || in parse_revoked_certs()
985 (r = sshbuf_get_string_direct(copy, &blob, &blen)) != 0) in ssh_krl_from_blob()
1011 if ((r = sshbuf_get_string_direct(copy, &blob, &blen)) != 0) { in ssh_krl_from_blob()
H A Dauthfd.c210 if ((r = sshbuf_get_string_direct(ids, &blob, &blen)) != 0 || in deserialise_identity2()
H A Dpacket.c2410 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 || in ssh_packet_set_state()
2411 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 || in ssh_packet_set_state()
2526 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp); in sshpkt_get_string_direct()
H A Dmonitor.c1282 if ((r = sshbuf_get_string_direct(b, &p, &len)) != 0) in monitor_valid_userblob()
1338 (r = sshbuf_get_string_direct(b, &p, &len)) != 0) in monitor_valid_hostbasedblob()
H A Dssh_namespace.h668 #define sshbuf_get_string_direct Fssh_sshbuf_get_string_direct macro
H A Dmonitor_wrap.c343 if ((r = sshbuf_get_string_direct(m, &p, &len)) != 0) in mm_getpwnamallow()
H A Dssh-agent.c310 (r = sshbuf_get_string_direct(e->request, &data, &dlen)) != 0 || in process_sign_request2()
H A Dchannels.c2519 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0)
2690 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have))
H A Dmux.c1600 if ((r = sshbuf_get_string_direct(queue, &ptr, &have)) != 0 || in mux_client_read_packet()
/freebsd-12.1/crypto/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_getput_crypto.c372 ASSERT_INT_EQ(sshbuf_get_string_direct(p1, &d, &s), 0); in sshbuf_getput_crypto_tests()