diff options
Diffstat (limited to 'node_modules/diffie-hellman/index.js')
-rw-r--r-- | node_modules/diffie-hellman/index.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/node_modules/diffie-hellman/index.js b/node_modules/diffie-hellman/index.js new file mode 100644 index 0000000..ab7c40f --- /dev/null +++ b/node_modules/diffie-hellman/index.js @@ -0,0 +1,10 @@ +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 |