Home
last modified time | relevance | path

Searched refs:sshbuf_skip_string (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/usr.bin/ssh/
Dmonitor.c1149 if ((r = sshbuf_skip_string(b)) != 0 || /* service */ in monitor_valid_userblob()
1163 if ((r = sshbuf_skip_string(b)) != 0 || /* pkalg */ in monitor_valid_userblob()
1164 (r = sshbuf_skip_string(b)) != 0 || /* pkblob */ in monitor_valid_userblob()
1220 if ((r = sshbuf_skip_string(b)) != 0 || /* service */ in monitor_valid_hostbasedblob()
1226 if ((r = sshbuf_skip_string(b)) != 0 || /* pkalg */ in monitor_valid_hostbasedblob()
1227 (r = sshbuf_skip_string(b)) != 0) /* pkblob */ in monitor_valid_hostbasedblob()
Dssh-keysign.c95 if ((r = sshbuf_skip_string(b)) != 0) in valid_request()
Dsshbuf.h212 #define sshbuf_skip_string(buf) sshbuf_get_string_direct(buf, NULL, NULL) macro
Dkrl.c880 (r = sshbuf_skip_string(buf)) != 0) in parse_revoked_certs()
1079 (r = sshbuf_skip_string(copy)) != 0 || in ssh_krl_from_blob()
1126 if ((r = sshbuf_skip_string(copy)) != 0) in ssh_krl_from_blob()
Dsshbuf-getput-basic.c285 if ((r = sshbuf_skip_string(buf)) != 0) in sshbuf_get_cstring()
Dmux.c335 if ((r = sshbuf_skip_string(m)) != 0 || /* reserved */ in mux_master_process_new_session()
955 if ((r = sshbuf_skip_string(m)) != 0 || /* reserved */ in mux_master_process_stdio_fwd()
1622 (r = sshbuf_skip_string(m)) != 0) { /* value */ in mux_client_hello_exchange()
Dsshkey.c3223 (r = sshbuf_skip_string(decoded)) != 0 || /* cipher */ in sshkey_parse_private2_pubkey()
3224 (r = sshbuf_skip_string(decoded)) != 0 || /* KDF alg */ in sshkey_parse_private2_pubkey()
3225 (r = sshbuf_skip_string(decoded)) != 0 || /* KDF hint */ in sshkey_parse_private2_pubkey()
/openbsd/src/regress/usr.bin/ssh/unittests/sshkey/
Dtest_sshkey.c66 ASSERT_INT_EQ(sshbuf_skip_string(pk), 0); in build_cert()