Symbol: sshkey_equal_public
crypto/openssh/auth2.c
759
if (sshkey_equal_public(key, authctxt->prev_keys[i])) {
crypto/openssh/authfd.c
368
if (sshkey_equal_public(idlist->keys[i], key)) {
crypto/openssh/authfile.c
343
if (sshkey_equal_public(key, cert) == 0) {
crypto/openssh/authfile.c
381
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
250
if (!sshkey_equal_public(key, k)) {
crypto/openssh/regress/misc/ssh-verify-attestation/ssh-verify-attestation.c
295
if (!sshkey_equal_public(key, k)) {
crypto/openssh/regress/unittests/sshkey/test_file.c
113
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
122
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
132
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
233
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
300
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
365
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
431
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/regress/unittests/sshkey/test_file.c
497
ASSERT_INT_EQ(sshkey_equal_public(k1, k2), 1);
crypto/openssh/ssh-add.c
200
if (!sshkey_equal_public(cert, public))
crypto/openssh/ssh-add.c
408
if (!sshkey_equal_public(cert, private)) {
crypto/openssh/ssh-agent.c
1627
if (!sshkey_equal_public(keys[i], certs[j]))
crypto/openssh/ssh-keygen.c
1692
if (sshkey_equal_public(public, keys[i])) {
crypto/openssh/ssh-keygen.c
2510
if (!sshkey_equal_public(pubkey, privkey)) {
crypto/openssh/ssh-keysign.c
282
sshkey_equal_public(key, keys[i])) {
crypto/openssh/ssh-pkcs11-client.c
304
!sshkey_equal_public(priv, certpub)) {
crypto/openssh/ssh_api.c
521
if (sshkey_equal_public(hostkey, k->key))
crypto/openssh/sshconnect2.c
1240
if (id->key != NULL && !sshkey_equal_public(prv, id->key)) {
crypto/openssh/sshconnect2.c
1353
if (sshkey_equal_public(id->key, private_id->key) &&
crypto/openssh/sshd.c
1766
if (sshkey_equal_public(key,
crypto/openssh/sshkey.c
857
return sshkey_equal_public(a, b);
crypto/openssh/sshkey.h
192
int sshkey_equal_public(const struct sshkey *,
crypto/openssh/sshsig.c
920
sshkey_equal_public(sign_key->cert->signature_key, found_key)) {