This works fine:
scrypt.kdfSync('abc', { N: 16, r: 8, p: 1 })
While this doesn't:
scrypt.kdfSync('abc', { N: 16384, r: 8, p: 1 })
Throws error computing derived key. Clearly, this is a local problem, since 16384 isn't even large, it's normal, but how do I troubleshoot this? I'm running this inside a vanilla Node 6.0.0 Docker container, if that's of any relevance.