Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dsshbuf-getput-crypto.c85 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 Dsshbuf.h223 int sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp,
227 #define sshbuf_skip_string(buf) sshbuf_get_string_direct(buf, NULL, NULL)
H A Dsshsig.c285 if ((r = sshbuf_get_string_direct(buf, NULL, NULL)) != 0 || in sshsig_peek_hashalg()
286 (r = sshbuf_get_string_direct(buf, NULL, NULL)) != 0 || in sshsig_peek_hashalg()
289 (r = sshbuf_get_string_direct(buf, NULL, NULL)) != 0) { in sshsig_peek_hashalg()
344 (r = sshbuf_get_string_direct(signature, &sig, &siglen)) != 0) { in sshsig_wrap_verify()
H A Dsshd-auth.c397 if ((r = sshbuf_get_string_direct(hostkeys, &cp, &len)) != 0) in parse_hostkeys()
406 if ((r = sshbuf_get_string_direct(hostkeys, &cp, &len)) != 0) in parse_hostkeys()
H A Dsshbuf-getput-basic.c195 if ((r = sshbuf_get_string_direct(buf, &val, &len)) < 0) in sshbuf_get_string()
212 sshbuf_get_string_direct(struct sshbuf *buf, const u_char **valp, size_t *lenp) in sshbuf_get_string_direct() function
H A Dssh-ed25519-sk.c156 sshbuf_get_string_direct(b, &sigblob, &len) != 0 || in ssh_ed25519_sk_verify()
H A Dssh-pkcs11-helper.c114 (r = sshbuf_get_string_direct(iqueue, &data, &dlen)) != 0 || in process_sign()
H A Dmonitor.c1397 if ((r = sshbuf_get_string_direct(b, &p, &len)) != 0) in monitor_valid_userblob()
1467 if ((r = sshbuf_get_string_direct(b, &p, &len)) != 0) in monitor_valid_hostbasedblob()
1534 if ((r = sshbuf_get_string_direct(m, &blob, &bloblen)) != 0 || in mm_answer_keyverify()
1535 (r = sshbuf_get_string_direct(m, &signature, &signaturelen)) != 0 || in mm_answer_keyverify()
1536 (r = sshbuf_get_string_direct(m, &data, &datalen)) != 0 || in mm_answer_keyverify()
H A Dssh-ed25519.c250 (r = sshbuf_get_string_direct(b, &sigblob, &len)) != 0) in ssh_ed25519_verify()
H A Dssh-sk-helper.c121 (r = sshbuf_get_string_direct(req, &message, &msglen)) != 0 || in process_sign()
H A Dsshd-session.c622 if ((r = sshbuf_get_string_direct(hostkeys, &cp, &len)) != 0) in parse_hostkeys()
631 if ((r = sshbuf_get_string_direct(hostkeys, &cp, &len)) != 0) in parse_hostkeys()
H A Dsshkey.c1889 (ret = sshbuf_get_string_direct(b, NULL, NULL)) != 0 || in cert_parse()
1950 if ((ret = sshbuf_get_string_direct(crit, NULL, NULL)) != 0 || in cert_parse()
1951 (ret = sshbuf_get_string_direct(crit, NULL, NULL)) != 0) { in cert_parse()
1958 if ((ret = sshbuf_get_string_direct(exts, NULL, NULL)) != 0 || in cert_parse()
1959 (ret = sshbuf_get_string_direct(exts, NULL, NULL)) != 0) { in cert_parse()
2041 if (sshbuf_get_string_direct(b, NULL, NULL) != 0) { in sshkey_from_blob_internal()
H A Dssh-mldsa-eddsa.c440 (r = sshbuf_get_string_direct(b, &sigblob, &len)) != 0) in ssh_mldsa44_ed25519_verify()
H A Dssh-agent.c804 (r = sshbuf_get_string_direct(b, NULL, NULL)) != 0 || /* reserved */ in parse_sshsig_request()
806 (r = sshbuf_get_string_direct(b, NULL, NULL)) != 0) /* H(msg) */ in parse_sshsig_request()
1109 (r = sshbuf_get_string_direct(b, NULL, &elen)) != 0) { in parse_dest_constraint_hop()
1171 (r = sshbuf_get_string_direct(b, NULL, &elen)) != 0) { in parse_dest_constraint()
H A Dauthfd.c242 if ((r = sshbuf_get_string_direct(ids, &blob, &blen)) != 0 || in deserialise_identity2()
H A Dpacket.c2671 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 || in ssh_packet_set_state()
2672 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 || in ssh_packet_set_state()
2802 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp); in sshpkt_get_string_direct()
H A Dmux.c287 (r = sshbuf_get_string_direct(m, NULL, &value_len)) != 0) { in mux_master_process_hello()
1627 if ((r = sshbuf_get_string_direct(queue, &ptr, &have)) != 0 || in mux_client_read_packet_timeout()
H A Dmonitor_wrap.c323 if ((r = sshbuf_get_string_direct(b, &p, &len)) != 0) \
H A Dssh_namespace.h839 #define sshbuf_get_string_direct Fssh_sshbuf_get_string_direct macro
H A Dkrl.c882 if ((r = sshbuf_get_string_direct(buf, &blob, &blen)) != 0 || in parse_revoked_certs()
H A Dchannels.c3064 if ((r = sshbuf_get_string_direct(c->input, &pkt, &plen)) != 0) in channel_output_poll_input_open()
3234 if ((r = sshbuf_get_string_direct(downstream->input, &cp, &have)) in channel_proxy_downstream()
/freebsd/crypto/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_getput_crypto.c241 ASSERT_INT_EQ(sshbuf_get_string_direct(p1, &d, &s), 0); in sshbuf_getput_crypto_tests()
/freebsd/crypto/openssh/regress/misc/ssh-verify-attestation/
H A Dssh-verify-attestation.c105 (r = sshbuf_get_string_direct(b, NULL, NULL)) != 0) { /* reserved */ in prepare_fido_cred()