Symbol: sshkey_from_blob
regress/usr.bin/ssh/unittests/sshkey/test_fuzz.c
56
ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(buf), sshbuf_len(buf),
regress/usr.bin/ssh/unittests/sshkey/test_fuzz.c
62
if (sshkey_from_blob(fuzz_ptr(fuzz), fuzz_len(fuzz), &k1) == 0)
regress/usr.bin/ssh/unittests/sshkey/test_sshkey.c
448
ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k3), 0);
regress/usr.bin/ssh/unittests/sshkey/test_sshkey.c
514
ASSERT_INT_EQ(sshkey_from_blob(sshbuf_ptr(b), sshbuf_len(b), &k4),
usr.bin/ssh/auth2-hostbased.c
90
if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
usr.bin/ssh/auth2-pubkey.c
142
if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
usr.bin/ssh/authfd.c
244
if ((r = sshkey_from_blob(blob, blen, keyp)) != 0)
usr.bin/ssh/clientloop.c
2475
if ((r = sshkey_from_blob(blob, len, &key)) != 0) {
usr.bin/ssh/krl.c
1319
if ((r = sshkey_from_blob(rb->blob, rb->len, &key)) != 0) {
usr.bin/ssh/krl.c
883
if (blen != 0 && (r = sshkey_from_blob(blob, blen, &ca_key)) != 0)
usr.bin/ssh/monitor.c
1325
if ((r = sshkey_from_blob(blob, bloblen, &key)) != 0)
usr.bin/ssh/serverloop.c
678
(r = sshkey_from_blob(blob, blen, &key)) != 0) {
usr.bin/ssh/ssh-keysign.c
120
else if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
usr.bin/ssh/sshconnect2.c
698
if ((r = sshkey_from_blob(pkblob, blen, &key)) != 0) {
usr.bin/ssh/sshd-auth.c
382
if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0)
usr.bin/ssh/sshd-auth.c
391
if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0)
usr.bin/ssh/sshd-session.c
588
if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0)
usr.bin/ssh/sshd-session.c
597
if (len != 0 && (r = sshkey_from_blob(cp, len, &k)) != 0)
usr.bin/ssh/sshkey.h
249
int sshkey_from_blob(const u_char *, size_t, struct sshkey **);