test: distribute crypto tests into separate files
authorBrendan Ashworth <brendan.ashworth@me.com>
Thu, 12 Feb 2015 08:19:25 +0000 (00:19 -0800)
committerJeremiah Senkpiel <fishrock123@rocketmail.com>
Fri, 13 Feb 2015 17:00:12 +0000 (12:00 -0500)
commitbecb4e980e9fde8f2e49f5d0326fed787bcc0c76
treed641f34b82046ebd1de6485716fc2e1800df5dfa
parent789ff959be031852fda33dd067736efd842ce315
test: distribute crypto tests into separate files

This commit distributes many of the various tests that were previously
strewn about `test-crypto.js` into their own files, such as for Ciphers
and Deciphers, Hashing, and HMACs. Copy pasta, and no style changes
besides removing a few now-unnecessary closures.

Helps eliminate file bloat and allows for easier test prognosis.

PR-URL: https://github.com/iojs/io.js/pull/827
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
test/parallel/test-crypto-cipher-decipher.js [new file with mode: 0644]
test/parallel/test-crypto-dh.js [new file with mode: 0644]
test/parallel/test-crypto-hash.js [new file with mode: 0644]
test/parallel/test-crypto-hmac.js [new file with mode: 0644]
test/parallel/test-crypto-pbkdf2.js [new file with mode: 0644]
test/parallel/test-crypto-rsa-dsa.js [new file with mode: 0644]
test/parallel/test-crypto-sign-verify.js [new file with mode: 0644]
test/parallel/test-crypto.js