I'm thinking of using qDSA for a small IOT project that I'm working on, and while exploring the API, I had a question.
int verify(
unsigned char *m, long long mlen,
unsigned char *sm, unsigned long long smlen,
const unsigned char *pk
);
the long long mlen, shouldn't it be either not there, or actually a pointer, since the first thing you do is override the value with smlen - 64?
I'm thinking of using qDSA for a small IOT project that I'm working on, and while exploring the API, I had a question.
the
long long mlen, shouldn't it be either not there, or actually a pointer, since the first thing you do is override the value withsmlen - 64?