Searched refs:sshkey_from_blob (Results 1 – 18 of 18) sorted by relevance
/freebsd/crypto/openssh/regress/misc/fuzz-harness/ |
H A D | pubkey_fuzz.cc | 12 int r = sshkey_from_blob(data, size, &k); in LLVMFuzzerTestOneInput()
|
/freebsd/crypto/openssh/regress/unittests/sshkey/ |
H A D | test_fuzz.c | 65 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 D | test_sshkey.c | 456 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 D | auth2-hostbased.c | 91 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_hostbased()
|
H A D | ssh-keysign.c | 125 else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in valid_request()
|
H A D | sshkey.h | 273 int sshkey_from_blob(const u_char *, size_t, struct sshkey **);
|
H A D | ssh-pkcs11-helper.c | 209 if ((r = sshkey_from_blob(blob, blen, &key)) != 0) in process_sign()
|
H A D | sshd-session.c | 717 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 D | krl.c | 885 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 D | authfd.c | 246 if ((r = sshkey_from_blob(blob, blen, keyp)) != 0) in deserialise_identity2()
|
H A D | ssh-pkcs11-client.c | 663 if ((r = sshkey_from_blob(blob, blen, &k)) != 0) in pkcs11_add_provider()
|
H A D | auth2-pubkey.c | 144 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in userauth_pubkey()
|
H A D | serverloop.c | 665 (r = sshkey_from_blob(blob, blen, &key)) != 0) { in server_input_hostkeys_prove()
|
H A D | ssh_namespace.h | 878 #define sshkey_from_blob Fssh_sshkey_from_blob macro
|
H A D | monitor.c | 1446 if ((r = sshkey_from_blob(blob, bloblen, &key)) != 0) in mm_answer_keyverify()
|
H A D | clientloop.c | 2460 if ((r = sshkey_from_blob(blob, len, &key)) != 0) { in client_input_hostkeys()
|
H A D | sshconnect2.c | 705 if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) { in input_userauth_pk_ok()
|
H A D | sshkey.c | 2072 sshkey_from_blob(const u_char *blob, size_t blen, struct sshkey **keyp) in sshkey_from_blob() function
|