mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
462 B
17 lines
462 B
12 years ago
|
try {
|
||
|
var crypto = require('crypto');
|
||
|
} catch (e) {
|
||
|
console.log('Not compiled with OPENSSL support.');
|
||
|
process.exit();
|
||
|
}
|
||
|
|
||
|
// the missing var keyword is intentional
|
||
|
domain = require('domain');
|
||
|
|
||
|
// should not throw a 'TypeError: undefined is not a function' exception
|
||
|
crypto.randomBytes(8);
|
||
|
crypto.randomBytes(8, function() {});
|
||
|
crypto.pseudoRandomBytes(8);
|
||
|
crypto.pseudoRandomBytes(8, function() {});
|
||
12 years ago
|
crypto.pbkdf2('password', 'salt', 8, 8, function() {});
|