Symbol: sshbuf_cmp
crypto/openssh/krl.c
1057
if ((r = sshbuf_cmp(buf, 0, KRL_MAGIC, sizeof(KRL_MAGIC) - 1)) != 0) {
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
202
ASSERT_INT_EQ(sshbuf_cmp(p1, 0, "i", 1), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
203
ASSERT_INT_EQ(sshbuf_cmp(p1, 0, "j", 1), SSH_ERR_INVALID_FORMAT);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
204
ASSERT_INT_EQ(sshbuf_cmp(p1, 0, "imploring", 9), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
205
ASSERT_INT_EQ(sshbuf_cmp(p1, 0, "implored", 9), SSH_ERR_INVALID_FORMAT);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
206
ASSERT_INT_EQ(sshbuf_cmp(p1, 10, "ping", 4), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
207
ASSERT_INT_EQ(sshbuf_cmp(p1, 10, "ring", 4), SSH_ERR_INVALID_FORMAT);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
208
ASSERT_INT_EQ(sshbuf_cmp(p1, 28, "over", 4), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
209
ASSERT_INT_EQ(sshbuf_cmp(p1, 28, "rove", 4), SSH_ERR_INVALID_FORMAT);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
210
ASSERT_INT_EQ(sshbuf_cmp(p1, 28, "overt", 5),
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
212
ASSERT_INT_EQ(sshbuf_cmp(p1, 32, "ping", 4),
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
214
ASSERT_INT_EQ(sshbuf_cmp(p1, 1000, "silence", 7),
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
216
ASSERT_INT_EQ(sshbuf_cmp(p1, 0, msg, sizeof(msg) - 1), 0);
crypto/openssh/ssh-agent.c
801
if ((r = sshbuf_cmp(b, 0, "SSHSIG", 6)) != 0 ||
crypto/openssh/ssh-ecdsa-sk.c
217
if ((r = sshbuf_cmp(wrapper, 0, sshbuf_ptr(m), sshbuf_len(m))) != 0)
crypto/openssh/sshbuf.h
288
int sshbuf_cmp(const struct sshbuf *b, size_t offset,
crypto/openssh/sshsig.c
102
if ((r = sshbuf_cmp(sbuf, 0,
crypto/openssh/sshsig.c
111
if ((r = sshbuf_cmp(sbuf, 0, "\r\n", 2)) == 0)
crypto/openssh/sshsig.c
113
else if ((r = sshbuf_cmp(sbuf, 0, "\n", 1)) == 0)
crypto/openssh/sshsig.c
247
if ((r = sshbuf_cmp(buf, 0, MAGIC_PREAMBLE, MAGIC_PREAMBLE_LEN)) != 0 ||