Use size_t and uint64_t instead of long long in ed25519/.

This commit is contained in:
EinMByte
2015-08-30 10:18:29 +02:00
parent 22f9380d49
commit a24d99d678
5 changed files with 12 additions and 12 deletions

View File

@@ -14,7 +14,7 @@ static unsigned char equal(signed char b,signed char c)
static unsigned char negative(signed char b)
{
unsigned long long x = b; /* 18446744073709551361..18446744073709551615: yes; 0..255: no */
uint64_t x = b; /* 18446744073709551361..18446744073709551615: yes; 0..255: no */
x >>= 63; /* 1: yes; 0: no */
return x;
}