當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js crypto.generateKey(type, options, callback)用法及代碼示例


crypto.generateKey(type, options, callback)

曆史
版本變化
v18.0.0

將無效回調傳遞給 callback 參數現在會拋出 ERR_INVALID_ARG_TYPE 而不是 ERR_INVALID_CALLBACK

v15.0.0

添加於:v15.0.0


參數
  • type : <string> 生成的 key 的預期用途。當前接受的值為 'hmac''aes'
  • options<Object>
    • length<number>要生成的 key 的位長。這必須是一個大於 0 的值。
      • 如果 type'hmac' ,則最小值為 1,最大長度為 231-1。如果該值不是 8 的倍數,則生成的 key 將被截斷為 Math.floor(length / 8)
      • 如果 type'aes' ,則長度必須是 128192256 之一。
  • callback<Function>

異步生成給定 length 的新隨機 key 。 type 將確定將在 length 上執行哪些驗證。

const {
  generateKey
} = await import('node:crypto');

generateKey('hmac', { length: 64 }, (err, key) => {
  if (err) throw err;
  console.log(key.export().toString('hex'));  // 46e..........620
});const {
  generateKey,
} = require('node:crypto');

generateKey('hmac', { length: 64 }, (err, key) => {
  if (err) throw err;
  console.log(key.export().toString('hex'));  // 46e..........620
});

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 crypto.generateKey(type, options, callback)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。