- added
scrypt.async()
method
- breaking Node v0.10 not supported anymore.
- now using standard for code formatting
- now using
pbkdf2
module overpbkdf2-sha256
, huge performance increase in Node
- upgraded
pbkdf2-sha256
from1.0.1
to1.1.0
- removed
browser
field forcrypto
; not-necessary anymore
- added
progressCallback
(Nadav Ivgi / #4)[#4]
- moved tests to fixtures
- removed semilcolons per http://cryptocoinjs.com/about/contributing/#semicolons
- changed
module.exports.scrypt = funct..
tomodule.exports = funct...
- removed
terst
from dev deps - upgraded
"pbkdf2-sha256": "~0.1.1"
to"pbkdf2-sha256": "^1.0.1"
- added
crypto-browserify
dev dep forpbkdf2-sha256
tests - added TravisCI
- added Coveralls
- added testling
- made a lot of scrypt functions internal along with variables to make thread safe
- changed spacing from 4 to 2
- removed unneeded JavaScript implementations. Using
pbkdf2-sha256
dep now. - add browser test support
- convert from
Array
to typed arrays andBuffer
- initial release. Forked from https://github.com/cheongwy/node-scrypt-js and added tests.