/freebsd-src/crypto/openssh/ |
H A D | sshbuf-getput-crypto.c | 85 if (sshbuf_get_string_direct(buf, NULL, NULL) != 0) { in sshbuf_get_ec() 120 if (sshbuf_get_string_direct(buf, NULL, NULL) != 0) { in sshbuf_get_eckey()
|
H A D | sshbuf.h | 201 int sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp, 205 #define sshbuf_skip_string(buf) sshbuf_get_string_direct(buf, NULL, NULL)
|
H A D | sshsig.c | 280 if ((r = sshbuf_get_string_direct(buf, NULL, NULL)) != 0 || in sshsig_peek_hashalg() 281 (r = sshbuf_get_string_direct(buf, NULL, NULL)) != 0 || in sshsig_peek_hashalg() 284 (r = sshbuf_get_string_direct(buf, NULL, NULL)) != 0) { in sshsig_peek_hashalg() 339 (r = sshbuf_get_string_direct(signature, &sig, &siglen)) != 0) { in sshsig_wrap_verify()
|
H A D | sshbuf-getput-basic.c | 197 if ((r = sshbuf_get_string_direct(buf, &val, &len)) < 0) in sshbuf_get_string() 214 sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp, size_t *lenp) in sshbuf_get_string_direct() function
|
H A D | ssh-ed25519-sk.c | 158 sshbuf_get_string_direct(b, &sigblob, &len) != 0 || in ssh_ed25519_sk_verify()
|
H A D | monitor.c | 1267 if ((r = sshbuf_get_string_direct(b, &p, &len)) != 0) in monitor_valid_userblob() 1337 if ((r = sshbuf_get_string_direct(b, &p, &len)) != 0) in monitor_valid_hostbasedblob() 1404 if ((r = sshbuf_get_string_direct(m, &blob, &bloblen)) != 0 || in mm_answer_keyverify() 1405 (r = sshbuf_get_string_direct(m, &signature, &signaturelen)) != 0 || in mm_answer_keyverify() 1406 (r = sshbuf_get_string_direct(m, &data, &datalen)) != 0 || in mm_answer_keyverify()
|
H A D | ssh-ed25519.c | 228 (r = sshbuf_get_string_direct(b, &sigblob, &len)) != 0) in ssh_ed25519_verify()
|
H A D | ssh-sk-helper.c | 104 (r = sshbuf_get_string_direct(req, &message, &msglen)) != 0 || in process_sign()
|
H A D | ssh-xmss.c | 304 (r = sshbuf_get_string_direct(b, &sigblob, &len)) != 0) in ssh_xmss_verify()
|
H A D | monitor_wrap.c | 248 if ((r = sshbuf_get_string_direct(b, &p, &len)) != 0) \ 310 if ((r = sshbuf_get_string_direct(m, &p, &len)) != 0) in mm_getpwnamallow()
|
H A D | sshkey.c | 1783 (ret = sshbuf_get_string_direct(b, NULL, NULL)) != 0 || in cert_parse() 1844 if ((ret = sshbuf_get_string_direct(crit, NULL, NULL)) != 0 || in cert_parse() 1845 (ret = sshbuf_get_string_direct(crit, NULL, NULL)) != 0) { in cert_parse() 1852 if ((ret = sshbuf_get_string_direct(exts, NULL, NULL)) != 0 || in cert_parse() 1853 (ret = sshbuf_get_string_direct(exts, NULL, NULL)) != 0) { in cert_parse() 1935 if (sshbuf_get_string_direct(b, NULL, NULL) != 0) { in sshkey_from_blob_internal()
|
H A D | ssh-agent.c | 801 (r = sshbuf_get_string_direct(b, NULL, NULL)) != 0 || /* reserved */ in parse_sshsig_request() 803 (r = sshbuf_get_string_direct(b, NULL, NULL)) != 0) /* H(msg) */ in parse_sshsig_request() 1099 (r = sshbuf_get_string_direct(b, NULL, &elen)) != 0) { in parse_dest_constraint_hop() 1157 (r = sshbuf_get_string_direct(b, NULL, &elen)) != 0) { in parse_dest_constraint()
|
H A D | authfd.c | 243 if ((r = sshbuf_get_string_direct(ids, &blob, &blen)) != 0 || in deserialise_identity2()
|
H A D | packet.c | 2486 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 || in ssh_packet_set_state() 2487 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 || in ssh_packet_set_state() 2608 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp); in sshpkt_get_string_direct()
|
H A D | mux.c | 297 (r = sshbuf_get_string_direct(m, NULL, &value_len)) != 0) { in mux_master_process_hello() 1583 if ((r = sshbuf_get_string_direct(queue, &ptr, &have)) != 0 || in mux_client_read_packet_timeout()
|
H A D | ssh_namespace.h | 779 #define sshbuf_get_string_direct Fssh_sshbuf_get_string_direct macro
|
H A D | krl.c | 881 if ((r = sshbuf_get_string_direct(buf, &blob, &blen)) != 0 || in parse_revoked_certs()
|
H A D | channels.c | 2983 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0) in channel_output_poll_input_open() 3153 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have)) in channel_proxy_downstream()
|
/freebsd-src/crypto/openssh/regress/unittests/sshbuf/ |
H A D | test_sshbuf_getput_crypto.c | 242 ASSERT_INT_EQ(sshbuf_get_string_direct(p1, &d, &s), 0); in sshbuf_getput_crypto_tests()
|