/external/dropbear/ |
buffer.c | 143 void buf_incrpos(buffer* buf, int incr) { function 147 dropbear_exit("bad buf_incrpos"); 220 buf_incrpos(buf, len); 230 buf_incrpos( buf, buf_getint(buf) ); 238 buf_incrpos(buf, 4); 336 buf_incrpos(buf, len);
|
buffer.h | 50 void buf_incrpos(buffer* buf, int incr); /* -ve is ok, to go backwards */
|
keyimport.c | 173 buf_incrpos(buf, len); 732 buf_incrpos(keyblob, buf_getint(keyblob)); 751 buf_incrpos(keyblob, numbers[2].bytes); 756 buf_incrpos(keyblob, numbers[1].bytes); 761 buf_incrpos(keyblob, numbers[3].bytes); 766 buf_incrpos(keyblob, numbers[4].bytes); 771 buf_incrpos(keyblob, numbers[5].bytes); 818 buf_incrpos(extrablob, numbers[6].bytes); 823 buf_incrpos(extrablob, numbers[7].bytes); 828 buf_incrpos(extrablob, numbers[8].bytes) [all...] |
cli-kex.c | 253 buf_incrpos(line, hostlen); 265 buf_incrpos(line, algolen);
|
cli-authpubkey.c | 95 buf_incrpos(keybuf, 4); /* first int is the length of the remainder (ie
|
packet.c | 86 buf_incrpos(writebuf, written); 138 buf_incrpos(ses.readbuf, len); 262 buf_incrpos(ses.readbuf, blocksize); 495 buf_incrpos(clearwritebuf, blocksize);
|
signkey.c | 110 buf_incrpos(buf, -len - 4); 163 buf_incrpos(buf, -len - 4);
|
dropbearkey.c | 366 buf_incrpos(buf, len);
|
svr-authpubkey.c | 216 buf_incrpos(line, algolen);
|
dss.c | 57 buf_incrpos(buf, 4+SSH_SIGNKEY_DSS_LEN); /* int + "ssh-dss" */
|
rsa.c | 61 buf_incrpos(buf, 4+SSH_SIGNKEY_RSA_LEN); /* int + "ssh-rsa" */
|
common-kex.c | 601 buf_incrpos(ses.payload, 16); /* start after the cookie */
|
common-channel.c | 707 buf_incrpos(ses.payload, buflen);
|
svr-chansession.c | 812 buf_incrpos(motdbuf, len);
|