作者:公民不是百姓2 | 来源:互联网 | 2024-11-03 10:24
Node.js crypto.createECDH()方法原文:https://www . geesforgeks . org/
Node.js crypto.createECDH()方法
原文:https://www . geesforgeks . org/node-js-crypto-createecdh-method/
crypto.createECDH()方法是加密模块的内置应用编程接口,用于借助于由曲线名称字符串定义的预定义曲线来创建椭圆曲线差分-赫尔曼即(ECDH)密钥交换对象。此外,您可以使用 crypto.getCurves()方法来返回可用曲线名称的列表。
语法:
crypto.createECDH( curveName )
参数:该方法接受单参数曲线名称,类型为字符串。
返回值:返回 ECDH 密钥交换对象。
下面的例子说明了 crypto.createECDH()方法在 Node.js 中的使用:
例 1:
// Node.js program to demonstrate the
// crypto.createECDH() method
// Including crypto module
const crypto = require('crypto');
// Creating ECDH with curve name
const curv = crypto.createECDH('secp521r1');
// Prints keys
console.log(curv.generateKeys());
输出:
例 2:
// Node.js program to demonstrate the
// crypto.createECDH() method
// Including crypto module
const crypto = require('crypto');
// Creating ECDH with curve name
const curv = crypto.createECDH('secp521r1');
curv.generateKeys();
// Prints Public key
console.log("Public Key: ", curv.getPublicKey());
// Prints Private Key
console.log("Private Key :", curv.getPrivateKey());
输出:
Public Key:
Private Key :
参考:https://nodejs . org/API/crypt . html # crypt _ crypt _ create ecdh _ curve name