Home
last modified time | relevance | path

Searched refs:sshkey_from_blob (Results 1 – 18 of 18) 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.c65 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(buf), sshbuf_len(buf), in public_fuzz()
71 if (sshkey_from_blob(fuzz_ptr(fuzz), fuzz_len(fuzz), &k1) == 0) in public_fuzz()
H A Dtest_sshkey.c456 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k3), 0); in sshkey_tests()
531 ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k4), in sshkey_tests()
/freebsd/crypto/openssh/
H A Dauth2-hostbased.c91 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_hostbased()
H A Dssh-keysign.c125 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in valid_request()
H A Dsshkey.h273 int sshkey_from_blob(const u_char *, size_t, struct sshkey **);
H A Dssh-pkcs11-helper.c209 if ((r = sshkey_from_blob(blob, blen, &key)) != 0) in process_sign()
H A Dsshd-session.c717 if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0) in parse_hostkeys()
726 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.c246 if ((r = sshkey_from_blob(blob, blen, keyp)) != 0) in deserialise_identity2()
H A Dssh-pkcs11-client.c663 if ((r = sshkey_from_blob(blob, blen, &k)) != 0) in pkcs11_add_provider()
H A Dauth2-pubkey.c144 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_pubkey()
H A Dserverloop.c665 (r = sshkey_from_blob(blob, blen, &key)) != 0) { in server_input_hostkeys_prove()
H A Dssh_namespace.h878 #define sshkey_from_blob Fssh_sshkey_from_blob macro
H A Dmonitor.c1446 if ((r = sshkey_from_blob(blob, bloblen, &key)) != 0) in mm_answer_keyverify()
H A Dclientloop.c2460 if ((r = sshkey_from_blob(blob, len, &key)) != 0) { in client_input_hostkeys()
H A Dsshconnect2.c705 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in input_userauth_pk_ok()
H A Dsshkey.c2072 sshkey_from_blob(const u_char *blob, size_t blen, struct sshkey **keyp) in sshkey_from_blob() function