Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

crypto.generateKeyPair() วิธีการใน Node.js


สามารถใช้ crypto.generateKeyPair() เพื่อสร้างคู่คีย์แบบอสมมาตรใหม่ของประเภทที่ระบุได้ ประเภทที่รองรับสำหรับการสร้างคู่คีย์ ได้แก่ RSA, DSA, EC, Ed25519, Ed448, X25519, X448 และ DH ฟังก์ชันทำงานเหมือนกับว่า keyObject.export ถูกเรียกใช้จากผลลัพธ์เมื่อมีการระบุ publicKeyEncoding หรือ privateKeyEncoding มิฉะนั้นจะส่งคืนส่วนที่เกี่ยวข้องของ keyObject

ไวยากรณ์

crypto.generateKeyPair(type, options, callback)

พารามิเตอร์

พารามิเตอร์ข้างต้นอธิบายไว้ด้านล่าง −

  • ประเภท – มีประเภทสตริงที่ต้องการสร้างคีย์ ประเภทที่รองรับ ได้แก่ RSA, DSA, EC, Ed25519, Ed448, X25519, X448 และ DH

  • ตัวเลือก – สามารถเก็บพารามิเตอร์ต่อไปนี้ได้ -

    • ความยาวโมดูลัส – เก็บขนาดคีย์เป็นบิตสำหรับประเภท (RSA, DSA)

    • เลขชี้กำลังสาธารณะ – เก็บค่าเลขชี้กำลังสาธารณะสำหรับอัลกอริทึม RSA

      ค่าเริ่มต้นคือ – 0x10001

    • ตัวหารLength – นี่เก็บขนาดของ q เป็นบิต

    • ชื่อCurve – จะถือชื่อเส้นโค้งที่จะใช้

    • ไพรม์ – ซึ่งจะเก็บพารามิเตอร์เฉพาะสำหรับประเภทเช่น DH

    • ความยาวหลัก – นี่จะถือความยาวเฉพาะในหน่วยบิต

    • เครื่องกำเนิดไฟฟ้า – พารามิเตอร์นี้เก็บค่าตัวสร้างที่กำหนดเอง ค่าเริ่มต้น:2.

    • ชื่อกลุ่ม – นี่คือชื่อกลุ่ม diffe-hellman สำหรับอัลกอริธึม DH

    • publicKeyEncoding – จะเก็บค่าสตริงสำหรับการเข้ารหัสคีย์สาธารณะ

    • การเข้ารหัสคีย์ส่วนตัว - ซึ่งจะเก็บค่าสตริงสำหรับการเข้ารหัสคีย์ส่วนตัว

  • โทรกลับ - การโทรกลับมีพารามิเตอร์ดังต่อไปนี้ -

    • ผิดพลาด – นี่จะเก็บประเภทของข้อผิดพลาด

    • กุญแจสาธารณะ – จะเก็บค่าสำหรับคีย์สาธารณะ

    • คีย์ส่วนตัว – จะเก็บค่าสำหรับคีย์ส่วนตัว

ตัวอย่าง

สร้างไฟล์ที่มีชื่อ – createKeyPair.js และคัดลอกข้อมูลโค้ดด้านล่าง หลังจากสร้างไฟล์แล้ว ให้ใช้คำสั่งต่อไปนี้เพื่อเรียกใช้โค้ดนี้ดังแสดงในตัวอย่างด้านล่าง −

node generateKeyPair.js

createKeyPair.js

// Node.js program to demonstrate the flow of crypto.generateKeyPair() method

// Importing generateKeyPair from crypto module
const { generateKeyPair } = require('crypto');

// Calling generateKeyPair() method with the below parameters
generateKeyPair('rsa', {
   modulusLength: 530, // options
   publicExponent: 0x10101,
   publicKeyEncoding: {
      type: 'pkcs1',
      format: 'der'
   },
   privateKeyEncoding: {
      type: 'pkcs8',
      format: 'der',
      cipher: 'aes-192-cbc',
      passphrase: 'Welcome to TutorialsPoint!'
   }
}, (err, publicKey, privateKey) => { // Callback function
   if(!err)
   {
      // This will print the asymmetric key pair
      console.log("Public Key is: ", publicKey);
      console.log();
      console.log("Private Key is: ", privateKey);
   }
   else
   {
      // Prints error if any
      console.log("Errr is: ", err);
   }
});

ผลลัพธ์

C:\home\node>> node generateKeyPair.js
Public Key is: <Buffer 30 4a 02 43 03 43 66 5a e1 25 0d d8 c4 fe e3 a0 77 ea
e4 e7 20 78 8c eb a7 a4 f6 85 f0 45 fc 7b 46 d7 3e 5e e3 8b a1 16 e5 59 e8 79
69 65 54 00 6c 89 ... >

Private Key is: <Buffer 30 82 01 cd 30 57 06 09 2a 86 48 86 f7 0d 01 05 0d 30
4a 30 29 06 09 2a 86 48 86 f7 0d 01 05 0c 30 1c 04 08 1e a2 b4 ea ce 50 0e 80
02 02 08 00 30 0c ... >

ตัวอย่าง

ลองดูอีกตัวอย่างหนึ่ง

// Node.js program to demonstrate the flow of crypto.generateKeyPair() method

// Importing generateKeyPair from crypto module
const { generateKeyPair } = require('crypto');

// Calling generateKeyPair() method with the below parameters
generateKeyPair('ec', {
   namedCurve: 'secp256k1', // Options
   publicKeyEncoding: {
      type: 'spki',
      format: 'der'
   },
   privateKeyEncoding: {
      type: 'pkcs8',
      format: 'der'
   }
},(err, publicKey, privateKey) => { // Callback function
   if(!err)
   {
      // This will print the asymmetric key pair
      console.log("Public Key is: ", publicKey);
      console.log("Public Key in hex is: ", publicKey.toString('hex'));
      console.log();
      console.log("Private Key is: ", privateKey);
      console.log("Private Key in hex is: ",
      privateKey.toString('hex'));
   }else{
      // Prints error if any
      console.log("Errr is: ", err);
   }
});

ผลลัพธ์

C:\home\node>> node generateKeyPair.js
Public Key is: <Buffer 30 56 30 10 06 07 2a 86 48 ce 3d 02 01 06 05 2b 81 04
00 0a 03 42 00 04 d1 d0 0b 7e f7 e3 3e cf d8 08 2a 20 a8 5e 52 be ca 56 29 42
c3 6b 9f d3 15 7c ... >
Public Key in hex is:
3056301006072a8648ce3d020106052b8104000a03420004d1d00b7ef7e33ecfd8082a20a85e52
beca562942c36b9fd3157cf98b03b41ecc4b4e13b4cd5cd35814383ee76afabaf794faf6f31bc8
c9f7007748f74767677c

Private Key is: <Buffer 30 81 84 02 01 00 30 10 06 07 2a 86 48 ce 3d 02 01 06
05 2b 81 04 00 0a 04 6d 30 6b 02 01 01 04 20 05 01 a1 d5 80 f7 65 56 6f a3 3a
05 d3 6d ec 82 ad ... >
Private Key in hex is:
308184020100301006072a8648ce3d020106052b8104000a046d306b02010104200501a1d580f7
65566fa33a05d36dec82ad590ff8697d182ddca6b881acfbadd1a14403420004d1d00b7ef7e33e
cfd8082a20a85e52beca562942c36b9fd3157cf98b03b41ecc4b4e13b4cd5cd35814383ee76afa
baf794faf6f31bc8c9f7007748f74767677c