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

@ -6,7 +6,7 @@
int crypto_sign(
unsigned char *sig,
const unsigned char* m, unsigned long long mlen,
const unsigned char* m, size_t mlen,
const unsigned char* sk, const unsigned char* pk
)
{