technion/libscrypt

Signature in the readme doesn't match header

Closed this issue · 2 comments

alex commented

The README describes:

int libscrypt_scrypt(char *dst, char *passphrase, uint32_t N, uint8_t r, uint8_t p);

While the header features:

int libscrypt_scrypt(const uint8_t *, size_t, const uint8_t *, size_t, uint64_t,
    uint32_t, uint32_t, /*@out@*/ uint8_t *, size_t);

README file was out of date - thanks for finding this.
I've corrected this, and included variable names in the README description.

Update: Not so much as of date, as much as referring to the wrong function. This has been fixed.