Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/regress/misc/fuzz-harness/
H A Dpubkey_fuzz.cc12 int r = sshkey_from_blob(data, size, &k); in LLVMFuzzerTestOneInput()
/freebsd/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.c486 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k3), 0); in sshkey_tests()
557 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k4), in sshkey_tests()
/freebsd/crypto/openssh/
H A Dsshd-auth.c396 if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0) in parse_hostkeys()
405 if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0) in parse_hostkeys()
H A Dauth2-hostbased.c91 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_hostbased()
H A Dssh-keysign.c123 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in valid_request()
H A Dsshkey.h255 int sshkey_from_blob(const u_char *, size_t, struct sshkey **);
H A Dsshd-session.c623 if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0) in parse_hostkeys()
632 if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0) in parse_hostkeys()
H A Dkrl.c885 if (blen != 0 && (r = sshkey_from_blob(blob, blen, &ca_key)) != 0) in parse_revoked_certs()
1321 if ((r = sshkey_from_blob(rb->blob, rb->len, &key)) != 0) { in krl_dump()
H A Dauthfd.c245 if ((r = sshkey_from_blob(blob, blen, keyp)) != 0) in deserialise_identity2()
H A Dserverloop.c690 (r = sshkey_from_blob(blob, blen, &key)) != 0) { in server_input_hostkeys_prove()
H A Dauth2-pubkey.c143 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_pubkey()
H A Dssh_namespace.h884 #define sshkey_from_blob Fssh_sshkey_from_blob macro
H A Dmonitor.c1577 if ((r = sshkey_from_blob(blob, bloblen, &key)) != 0) in mm_answer_keyverify()
H A Dclientloop.c2489 if ((r = sshkey_from_blob(blob, len, &key)) != 0) { in client_input_hostkeys()
H A Dsshconnect2.c706 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in input_userauth_pk_ok()
H A Dsshkey.c2058 sshkey_from_blob(const u_char *blob, size_t blen, struct sshkey **keyp) in sshkey_from_blob() function