HomeSort by relevance Sort by last modified time
    Searched refs:sshbuf_put_bignum1 (Results 1 - 8 of 8) sorted by null

  /external/openssh/
authfd.c 403 (r = sshbuf_put_bignum1(msg, key->rsa->e)) != 0 ||
404 (r = sshbuf_put_bignum1(msg, key->rsa->n)) != 0 ||
405 (r = sshbuf_put_bignum1(msg, challenge)) != 0 ||
505 (r = sshbuf_put_bignum1(b, key->n)) != 0 ||
506 (r = sshbuf_put_bignum1(b, key->e)) != 0 ||
507 (r = sshbuf_put_bignum1(b, key->d)) != 0 ||
508 (r = sshbuf_put_bignum1(b, key->iqmp)) != 0 ||
509 (r = sshbuf_put_bignum1(b, key->q)) != 0 ||
510 (r = sshbuf_put_bignum1(b, key->p)) != 0 ||
628 (r = sshbuf_put_bignum1(msg, key->rsa->e)) != 0 |
    [all...]
bufbn.c 37 if ((ret = sshbuf_put_bignum1(buffer, value)) != 0) {
sshbuf-getput-crypto.c 169 sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v) function
sshbuf.h 226 int sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v);
ssh-agent.c 263 (r = sshbuf_put_bignum1(msg,
265 (r = sshbuf_put_bignum1(msg,
    [all...]
sshkey.c     [all...]
packet.c     [all...]
  /external/openssh/regress/unittests/sshbuf/
test_sshbuf_getput_crypto.c 80 TEST_START("sshbuf_put_bignum1");
84 ASSERT_INT_EQ(sshbuf_put_bignum1(p1, bn), 0);
92 TEST_START("sshbuf_put_bignum1 limited");
97 r = sshbuf_put_bignum1(p1, bn);
104 TEST_START("sshbuf_put_bignum1 bn2");
108 ASSERT_INT_EQ(sshbuf_put_bignum1(p1, bn), 0);
116 TEST_START("sshbuf_put_bignum1 bn2 limited");
121 r = sshbuf_put_bignum1(p1, bn);

Completed in 237 milliseconds