Codebase list libcryptx-perl / ecfcf18
signed/unsigned warnings Karel Miko 7 years ago
2 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
367367 */
368368 int dh_import(const unsigned char *in, unsigned long inlen, dh_key *key)
369369 {
370 long x, y, s;
371 int err;
370 unsigned long x, y;
371 int s, err;
372372
373373 LTC_ARGCHK(in != NULL);
374374 LTC_ARGCHK(key != NULL);
3939 {
4040 ecc_point *precomp[16];
4141 unsigned bitbufA, bitbufB, lenA, lenB, len, nA, nB, nibble;
42 int x, y;
42 unsigned x, y;
4343 unsigned char *tA, *tB;
4444 int err, first;
4545 void *mp, *mu;