Scrypt crypto library in Web Assembly
- This project requires Rust 1.30.0 or later.
$ make
$ npm install -D scrypt-wasm
#Javascript
import('scrypt-wasm').then((wasm)=>{
console.log(wasm.scrypt('password in hex', 'salt in hex', n, r, p, dklen))
})