Symbol: sshkey_equal_public
crypto/openssh/auth2.c
753
if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
crypto/openssh/authfd.c
369
if (sshkey_equal_public(idlist->keys[i], key)) {
crypto/openssh/authfile.c
348
if (sshkey_equal_public(key, cert) == 0) {
crypto/openssh/authfile.c
386
strict_type ? sshkey_equal : sshkey_equal_public;
crypto/openssh/hostfile.c
324
if (sshkey_equal_public(k, hostkeys->entries[i].key))
crypto/openssh/hostfile.c
327
sshkey_equal_public(k->cert->signature_key,
crypto/openssh/hostfile.c
378
if (sshkey_equal_public(k->cert->signature_key,
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
249
if (!sshkey_equal_public(key, k)) {
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
294
if (!sshkey_equal_public(key, k)) {
crypto/openssh/regress/unittests/sshkey/test_file.c
116
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
125
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
135
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
227
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
329
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
396
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
462
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
528
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/ssh-add.c
205
if (!sshkey_equal_public(cert, public))
crypto/openssh/ssh-add.c
343
if (!sshkey_equal_public(idlist->keys[i], private))
crypto/openssh/ssh-add.c
412
if (!sshkey_equal_public(cert, private)) {
crypto/openssh/ssh-agent.c
1645
if (!sshkey_equal_public(keys[i], certs[j]))
crypto/openssh/ssh-keygen.c
1767
if (sshkey_equal_public(public, keys[i])) {
crypto/openssh/ssh-keygen.c
2581
if (!sshkey_equal_public(pubkey, privkey)) {
crypto/openssh/ssh-keysign.c
285
sshkey_equal_public(key, keys[i])) {
crypto/openssh/ssh-pkcs11-client.c
468
!sshkey_equal_public(priv, certpub)) {
crypto/openssh/ssh_api.c
521
if (sshkey_equal_public(hostkey, k->key))
crypto/openssh/sshconnect2.c
1234
if (id->key != NULL && !sshkey_equal_public(prv, id->key)) {
crypto/openssh/sshconnect2.c
1346
if (sshkey_equal_public(id->key, private_id->key) &&
crypto/openssh/sshd.c
1773
if (sshkey_equal_public(key,
crypto/openssh/sshkey.c
861
return sshkey_equal_public(a, b);
crypto/openssh/sshkey.h
207
int sshkey_equal_public(const struct sshkey *,
crypto/openssh/sshsig.c
920
sshkey_equal_public(sign_key->cert->signature_key, found_key)) {