mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 10:38:35 +00:00
11 lines
351 B
JavaScript
11 lines
351 B
JavaScript
|
var crypto = require('crypto')
|
||
|
|
||
|
// getDiffieHellman
|
||
|
exports.DiffieHellmanGroup = crypto.DiffieHellmanGroup
|
||
|
exports.createDiffieHellmanGroup = crypto.createDiffieHellmanGroup
|
||
|
exports.getDiffieHellman = crypto.getDiffieHellman
|
||
|
|
||
|
// createDiffieHellman
|
||
|
exports.createDiffieHellman = crypto.createDiffieHellman
|
||
|
exports.DiffieHellman = crypto.DiffieHellman
|