Home
last modified time | relevance | path

Searched refs:sshkey_from_blob (Results 1 – 22 of 22) sorted by relevance

/freebsd-12.1/crypto/openssh/regress/misc/fuzz-harness/
H A Dpubkey_fuzz.cc12 int r = sshkey_from_blob(data, size, &k); in LLVMFuzzerTestOneInput()
/freebsd-12.1/crypto/openssh/regress/unittests/sshkey/
H A Dtest_fuzz.c62 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(buf), sshbuf_len(buf), in public_fuzz()
68 if (sshkey_from_blob(fuzz_ptr(fuzz), fuzz_len(fuzz), &k1) == 0) in public_fuzz()
H A Dtest_sshkey.c429 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k3), 0); in sshkey_tests()
499 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k4), in sshkey_tests()
/freebsd-12.1/crypto/openssh/
H A Dkexc25519c.c91 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_c25519_reply()
H A Dkexecdhc.c122 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_ecdh_reply()
H A Dkexdhc.c126 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_dh()
H A Dauth2-hostbased.c91 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_hostbased()
H A Dssh-pkcs11-client.c235 if ((r = sshkey_from_blob(blob, blen, &k)) != 0) in pkcs11_add_provider()
H A Dsshkey.h181 int sshkey_from_blob(const u_char *, size_t, struct sshkey **);
H A Dkexgexc.c167 (r = sshkey_from_blob(server_host_key_blob, sbloblen, in input_kex_dh_gex_reply()
H A Dssh-keysign.c121 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in valid_request()
H A Dssh-pkcs11-helper.c190 if ((r = sshkey_from_blob(blob, blen, &key)) != 0) in process_sign()
H A Dauthfd.c213 if ((r = sshkey_from_blob(blob, blen, keyp)) != 0) in deserialise_identity2()
H A Dkrl.c824 if (blen != 0 && (r = sshkey_from_blob(blob, blen, &ca_key)) != 0) in parse_revoked_certs()
1000 if ((r = sshkey_from_blob(blob, blen, &key)) != 0) { in ssh_krl_from_blob()
H A Dserverloop.c696 (r = sshkey_from_blob(blob, blen, &key)) != 0) { in server_input_hostkeys_prove()
H A Dauth2-pubkey.c112 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_pubkey()
H A Dssh_namespace.h731 #define sshkey_from_blob Fssh_sshkey_from_blob macro
H A Dclientloop.c2038 if ((r = sshkey_from_blob(blob, len, &key)) != 0) { in client_input_hostkeys()
H A Dmonitor.c1421 if ((r = sshkey_from_blob(blob, bloblen, &key)) != 0) in mm_answer_keyverify()
H A Dsshconnect2.c611 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in input_userauth_pk_ok()
H A Dssh-keygen.c650 else if ((r = sshkey_from_blob(blob, blen, k)) != 0) in do_convert_from_ssh2()
H A Dsshkey.c2264 sshkey_from_blob(const u_char *blob, size_t blen, struct sshkey **keyp) in sshkey_from_blob() function