Web Crypto API#

稳定性:2 - 稳定

Node.js 提供了标准 Web Crypto API 的实现。

使用 globalThis.cryptorequire('node:crypto').webcrypto 访问此模块。

const { subtle } = globalThis.crypto;

(async function() {

  const key = await subtle.generateKey({
    name: 'HMAC',
    hash: 'SHA-256',
    length: 256,
  }, true, ['sign', 'verify']);

  const enc = new TextEncoder();
  const message = enc.encode('I love cupcakes');

  const digest = await subtle.sign({
    name: 'HMAC',
  }, key, message);

})(); 

示例#

生成密钥#

可以使用 <SubtleCrypto> 类生成对称(秘密)密钥或非对称密钥对(公钥和私钥)。

AES 密钥#
const { subtle } = globalThis.crypto;

async function generateAesKey(length = 256) {
  const key = await subtle.generateKey({
    name: 'AES-CBC',
    length,
  }, true, ['encrypt', 'decrypt']);

  return key;
} 
ECDSA 密钥对#
const { subtle } = globalThis.crypto;

async function generateEcKey(namedCurve = 'P-521') {
  const {
    publicKey,
    privateKey,
  } = await subtle.generateKey({
    name: 'ECDSA',
    namedCurve,
  }, true, ['sign', 'verify']);

  return { publicKey, privateKey };
} 
Ed25519/Ed448/X25519/X448 密钥对#

稳定性:1 - 实验性

const { subtle } = globalThis.crypto;

async function generateEd25519Key() {
  return subtle.generateKey({
    name: 'Ed25519',
  }, true, ['sign', 'verify']);
}

async function generateX25519Key() {
  return subtle.generateKey({
    name: 'X25519',
  }, true, ['deriveKey']);
} 
HMAC 密钥#
const { subtle } = globalThis.crypto;

async function generateHmacKey(hash = 'SHA-256') {
  const key = await subtle.generateKey({
    name: 'HMAC',
    hash,
  }, true, ['sign', 'verify']);

  return key;
} 
RSA 密钥对#
const { subtle } = globalThis.crypto;
const publicExponent = new Uint8Array([1, 0, 1]);

async function generateRsaKey(modulusLength = 2048, hash = 'SHA-256') {
  const {
    publicKey,
    privateKey,
  } = await subtle.generateKey({
    name: 'RSASSA-PKCS1-v1_5',
    modulusLength,
    publicExponent,
    hash,
  }, true, ['sign', 'verify']);

  return { publicKey, privateKey };
} 

加密和解密#

const crypto = globalThis.crypto;

async function aesEncrypt(plaintext) {
  const ec = new TextEncoder();
  const key = await generateAesKey();
  const iv = crypto.getRandomValues(new Uint8Array(16));

  const ciphertext = await crypto.subtle.encrypt({
    name: 'AES-CBC',
    iv,
  }, key, ec.encode(plaintext));

  return {
    key,
    iv,
    ciphertext,
  };
}

async function aesDecrypt(ciphertext, key, iv) {
  const dec = new TextDecoder();
  const plaintext = await crypto.subtle.decrypt({
    name: 'AES-CBC',
    iv,
  }, key, ciphertext);

  return dec.decode(plaintext);
} 

导出和导入密钥#

const { subtle } = globalThis.crypto;

async function generateAndExportHmacKey(format = 'jwk', hash = 'SHA-512') {
  const key = await subtle.generateKey({
    name: 'HMAC',
    hash,
  }, true, ['sign', 'verify']);

  return subtle.exportKey(format, key);
}

async function importHmacKey(keyData, format = 'jwk', hash = 'SHA-512') {
  const key = await subtle.importKey(format, keyData, {
    name: 'HMAC',
    hash,
  }, true, ['sign', 'verify']);

  return key;
} 

包装和解包密钥#

const { subtle } = globalThis.crypto;

async function generateAndWrapHmacKey(format = 'jwk', hash = 'SHA-512') {
  const [
    key,
    wrappingKey,
  ] = await Promise.all([
    subtle.generateKey({
      name: 'HMAC', hash,
    }, true, ['sign', 'verify']),
    subtle.generateKey({
      name: 'AES-KW',
      length: 256,
    }, true, ['wrapKey', 'unwrapKey']),
  ]);

  const wrappedKey = await subtle.wrapKey(format, key, wrappingKey, 'AES-KW');

  return { wrappedKey, wrappingKey };
}

async function unwrapHmacKey(
  wrappedKey,
  wrappingKey,
  format = 'jwk',
  hash = 'SHA-512') {

  const key = await subtle.unwrapKey(
    format,
    wrappedKey,
    wrappingKey,
    'AES-KW',
    { name: 'HMAC', hash },
    true,
    ['sign', 'verify']);

  return key;
} 

签名和验证#

const { subtle } = globalThis.crypto;

async function sign(key, data) {
  const ec = new TextEncoder();
  const signature =
    await subtle.sign('RSASSA-PKCS1-v1_5', key, ec.encode(data));
  return signature;
}

async function verify(key, signature, data) {
  const ec = new TextEncoder();
  const verified =
    await subtle.verify(
      'RSASSA-PKCS1-v1_5',
      key,
      signature,
      ec.encode(data));
  return verified;
} 

派生位和密钥#

const { subtle } = globalThis.crypto;

async function pbkdf2(pass, salt, iterations = 1000, length = 256) {
  const ec = new TextEncoder();
  const key = await subtle.importKey(
    'raw',
    ec.encode(pass),
    'PBKDF2',
    false,
    ['deriveBits']);
  const bits = await subtle.deriveBits({
    name: 'PBKDF2',
    hash: 'SHA-512',
    salt: ec.encode(salt),
    iterations,
  }, key, length);
  return bits;
}

async function pbkdf2Key(pass, salt, iterations = 1000, length = 256) {
  const ec = new TextEncoder();
  const keyMaterial = await subtle.importKey(
    'raw',
    ec.encode(pass),
    'PBKDF2',
    false,
    ['deriveKey']);
  const key = await subtle.deriveKey({
    name: 'PBKDF2',
    hash: 'SHA-512',
    salt: ec.encode(salt),
    iterations,
  }, keyMaterial, {
    name: 'AES-GCM',
    length,
  }, true, ['encrypt', 'decrypt']);
  return key;
} 

摘要#

const { subtle } = globalThis.crypto;

async function digest(data, algorithm = 'SHA-512') {
  const ec = new TextEncoder();
  const digest = await subtle.digest(algorithm, ec.encode(data));
  return digest;
} 

算法矩阵#

该表格详细介绍了 Node.js Web Crypto API 实现支持的算法以及每个算法支持的 API

算法generateKeyexportKeyimportKeyencryptdecryptwrapKeyunwrapKeyderiveBitsderiveKeysignverifydigest
'RSASSA-PKCS1-v1_5'
'RSA-PSS'
'RSA-OAEP'
'ECDSA'
'Ed25519' 1
'Ed448' 1
'ECDH'
'X25519' 1
'X448' 1
'AES-CTR'
'AES-CBC'
'AES-GCM'
'AES-KW'
'HMAC'
'HKDF'
'PBKDF2'
'SHA-1'
'SHA-256'
'SHA-384'
'SHA-512'

类:Crypto#

globalThis.cryptoCrypto 类的实例。Crypto 是一个单例,它提供对 crypto API 其余部分的访问。

crypto.subtle#

提供对 SubtleCrypto API 的访问。

crypto.getRandomValues(typedArray)#

生成加密强随机值。给定的 typedArray 填充有随机值,并返回对 typedArray 的引用。

给定的 typedArray 必须是 <TypedArray> 的基于整数的实例,即不接受 Float32ArrayFloat64Array

如果给定的 typedArray 大于 65,536 字节,则会抛出错误。

crypto.randomUUID()#

生成随机 RFC 4122 版本 4 UUID。UUID 使用加密伪随机数生成器生成。

类:CryptoKey#

cryptoKey.algorithm#

一个对象,详细说明密钥可用于的算法以及其他特定于算法的参数。

只读。

cryptoKey.extractable#

当为 true 时,可以使用 subtleCrypto.exportKey()subtleCrypto.wrapKey() 提取 <CryptoKey>

只读。

cryptoKey.type#

  • 类型:<string> 'secret''private''public' 之一。

一个字符串,标识密钥是对称密钥 ('secret') 还是非对称密钥 ('private''public')。

cryptoKey.usages#

一个字符串数组,标识密钥可用于的操作。

可能的用法是

  • 'encrypt' - 密钥可用于加密数据。
  • 'decrypt' - 密钥可用于解密数据。
  • 'sign' - 密钥可用于生成数字签名。
  • 'verify' - 密钥可用于验证数字签名。
  • 'deriveKey' - 密钥可用于派生新密钥。
  • 'deriveBits' - 密钥可用于派生位。
  • 'wrapKey' - 密钥可用于包装另一个密钥。
  • 'unwrapKey' - 密钥可用于解包另一个密钥。

有效的密钥用法取决于密钥算法(由 cryptokey.algorithm.name 标识)。

密钥类型'encrypt''decrypt''sign''verify''deriveKey''deriveBits''wrapKey''unwrapKey'
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'ECDH'
'X25519' 1
'X448' 1
'ECDSA'
'Ed25519' 1
'Ed448' 1
'HDKF'
'HMAC'
'PBKDF2'
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'

类:CryptoKeyPair#

CryptoKeyPair 是一个简单的字典对象,具有 publicKeyprivateKey 属性,表示非对称密钥对。

cryptoKeyPair.privateKey#

cryptoKeyPair.publicKey#

类:SubtleCrypto#

subtle.decrypt(algorithm, key, data)#

使用 algorithm 中指定的算法和参数以及 key 提供的关键材料,subtle.decrypt() 尝试解密提供的 data。如果成功,返回的 Promise 将使用包含纯文本结果的 <ArrayBuffer> 进行解析。

当前支持的算法包括

  • 'RSA-OAEP'
  • 'AES-CTR'
  • 'AES-CBC'
  • 'AES-GCM'

subtle.deriveBits(algorithm, baseKey, length)#

使用 algorithm 中指定的方法和参数,以及 baseKey 提供的关键材料,subtle.deriveBits() 尝试生成 length 位。

Node.js 实现要求当 length 为数字时,它必须是 8 的倍数。

lengthnull 时,将生成给定算法的最大位数。这适用于 'ECDH''X25519''X448' 算法。

如果成功,返回的 Promise 将使用包含生成数据的 <ArrayBuffer> 来解决。

当前支持的算法包括

  • 'ECDH'
  • 'X25519' 1
  • 'X448' 1
  • 'HKDF'
  • 'PBKDF2'

subtle.deriveKey(algorithm, baseKey, derivedKeyAlgorithm, extractable, keyUsages)#

使用 algorithm 中指定的方法和参数,以及 baseKey 提供的关键材料,subtle.deriveKey() 尝试根据 derivedKeyAlgorithm 中的方法和参数生成一个新的 <CryptoKey>

调用 subtle.deriveKey() 等同于调用 subtle.deriveBits() 来生成原始密钥材料,然后使用 deriveKeyAlgorithmextractablekeyUsages 参数作为输入将其结果传递到 subtle.importKey() 方法中。

当前支持的算法包括

  • 'ECDH'
  • 'X25519' 1
  • 'X448' 1
  • 'HKDF'
  • 'PBKDF2'

subtle.digest(algorithm, data)#

使用由 algorithm 标识的方法,subtle.digest() 尝试生成 data 的摘要。如果成功,则返回的 Promise 会使用包含已计算摘要的 <ArrayBuffer> 来解决。

如果 algorithm 作为 <string> 提供,则它必须是以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果 algorithm 作为 <Object> 提供,则它必须具有 name 属性,其值是以上之一。

subtle.encrypt(algorithm, key, data)#

使用由 algorithm 指定的方法和参数以及由 key 提供的密钥材料,subtle.encrypt() 尝试对 data 进行加密。如果成功,则返回的 Promise 会使用包含已加密结果的 <ArrayBuffer> 来解决。

当前支持的算法包括

  • 'RSA-OAEP'
  • 'AES-CTR'
  • 'AES-CBC'
  • 'AES-GCM'

subtle.exportKey(format, key)#

如果受支持,则将给定的密钥导出为指定格式。

如果 <CryptoKey> 不可提取,则返回的 Promise 将被拒绝。

format'pkcs8''spki' 且导出成功时,返回的 Promise 将使用包含已导出密钥数据的 <ArrayBuffer> 来解决。

format'jwk' 且导出成功时,返回的 Promise 将使用符合 JSON Web Key 规范的 JavaScript 对象来解决。

密钥类型'spki''pkcs8''jwk''raw'
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'ECDH'
'ECDSA'
'Ed25519' 1
'Ed448' 1
'HDKF'
'HMAC'
'PBKDF2'
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'

subtle.generateKey(algorithm, extractable, keyUsages)#

使用 algorithm 中提供的算法和参数,subtle.generateKey() 尝试生成新的密钥材料。根据所使用的算法,该算法可以生成单个 <CryptoKey><CryptoKeyPair>

支持的 <CryptoKeyPair>(公钥和私钥)生成算法包括

  • 'RSASSA-PKCS1-v1_5'
  • 'RSA-PSS'
  • 'RSA-OAEP'
  • 'ECDSA'
  • 'Ed25519' 1
  • 'Ed448' 1
  • 'ECDH'
  • 'X25519' 1
  • 'X448' 1

支持的 <CryptoKey>(密钥)生成算法包括

  • 'HMAC'
  • 'AES-CTR'
  • 'AES-CBC'
  • 'AES-GCM'
  • 'AES-KW'

subtle.importKey(format, keyData, algorithm, extractable, keyUsages)#

subtle.importKey() 方法尝试将提供的 keyData 解释为给定的 format,以使用提供的 algorithmextractablekeyUsages 参数创建一个 <CryptoKey> 实例。如果导入成功,则返回的 Promise 将使用创建的 <CryptoKey> 来解决。

如果导入 'PBKDF2' 密钥,则 extractable 必须为 false

当前支持的算法包括

密钥类型'spki''pkcs8''jwk''raw'
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'ECDH'
'X25519' 1
'X448' 1
'ECDSA'
'Ed25519' 1
'Ed448' 1
'HDKF'
'HMAC'
'PBKDF2'
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'

subtle.sign(algorithm, key, data)#

使用 algorithm 给出的方法和参数以及 key 提供的关键材料,subtle.sign() 尝试生成 data 的加密签名。如果成功,则返回的 Promise 将使用包含生成签名的 <ArrayBuffer> 来解决。

当前支持的算法包括

  • 'RSASSA-PKCS1-v1_5'
  • 'RSA-PSS'
  • 'ECDSA'
  • 'Ed25519' 1
  • 'Ed448' 1
  • 'HMAC'

subtle.unwrapKey(format, wrappedKey, unwrappingKey, unwrapAlgo, unwrappedKeyAlgo, extractable, keyUsages)#

在密码学中,“包装密钥”是指导出密钥材料并对其进行加密。subtle.unwrapKey() 方法尝试解密已包装的密钥并创建一个 <CryptoKey> 实例。它等效于首先对加密的密钥数据调用 subtle.decrypt()(使用 wrappedKeyunwrapAlgounwrappingKey 参数作为输入),然后使用 unwrappedKeyAlgoextractablekeyUsages 参数作为输入将结果传递到 subtle.importKey() 方法。如果成功,则返回的 Promise 会使用 <CryptoKey> 对象进行解析。

当前支持的包装算法包括

  • 'RSA-OAEP'
  • 'AES-CTR'
  • 'AES-CBC'
  • 'AES-GCM'
  • 'AES-KW'

支持的未包装密钥算法包括

  • 'RSASSA-PKCS1-v1_5'
  • 'RSA-PSS'
  • 'RSA-OAEP'
  • 'ECDSA'
  • 'Ed25519' 1
  • 'Ed448' 1
  • 'ECDH'
  • 'X25519' 1
  • 'X448' 1
  • 'HMAC'
  • 'AES-CTR'
  • 'AES-CBC'
  • 'AES-GCM'
  • 'AES-KW'

subtle.verify(algorithm, key, signature, data)#

使用 算法 中给出的方法和参数以及 密钥 提供的关键材料,subtle.verify() 尝试验证 签名数据 的有效加密签名。返回的承诺以 truefalse 解决。

当前支持的算法包括

  • 'RSASSA-PKCS1-v1_5'
  • 'RSA-PSS'
  • 'ECDSA'
  • 'Ed25519' 1
  • 'Ed448' 1
  • 'HMAC'

subtle.wrapKey(格式, 密钥, 包装密钥, 包装算法)#

在密码学中,“包装密钥”是指导出然后加密密钥材料。subtle.wrapKey() 方法将密钥材料导出到由 格式 标识的格式,然后使用 包装算法 指定的方法和参数以及 包装密钥 提供的关键材料对其进行加密。它等同于使用 格式密钥 作为参数调用 subtle.exportKey(),然后使用 包装密钥包装算法 作为输入将其结果传递给 subtle.encrypt() 方法。如果成功,返回的承诺将使用包含加密密钥数据的 <ArrayBuffer> 解决。

当前支持的包装算法包括

  • 'RSA-OAEP'
  • 'AES-CTR'
  • 'AES-CBC'
  • 'AES-GCM'
  • 'AES-KW'

算法参数#

算法参数对象定义了各种 <SubtleCrypto> 方法使用的方法和参数。虽然在此处描述为“类”,但它们是简单的 JavaScript 字典对象。

类: AlgorithmIdentifier#

algorithmIdentifier.name#

类: AesCbcParams#

aesCbcParams.iv#

提供初始化向量。它必须恰好为 16 字节长,并且应该是不可预测且加密随机的。

aesCbcParams.name#
  • 类型:<string> 必须为 'AES-CBC'

类:AesCtrParams#

aesCtrParams.counter#

计数器块的初始值。这必须恰好为 16 字节长。

AES-CTR 方法使用块的最右侧 length 位作为计数器,并将剩余位作为随机数。

aesCtrParams.length#
  • 类型:<number> aesCtrParams.counter 中用作计数器的位数。
aesCtrParams.name#
  • 类型:<string> 必须为 'AES-CTR'

类:AesGcmParams#

aesGcmParams.additionalData#

使用 AES-GCM 方法时,additionalData 是未加密但包含在数据验证中的额外输入。additionalData 的使用是可选的。

aesGcmParams.iv#

对于使用给定密钥的每个加密操作,初始化向量必须是唯一的。

理想情况下,这是一个确定性的 12 字节值,其计算方式保证在所有使用同一密钥的调用中都是唯一的。或者,初始化向量可能由至少 12 个加密随机字节组成。有关为 AES-GCM 构建初始化向量的更多信息,请参阅 NIST SP 800-38D 的第 8 节。

aesGcmParams.name#
  • 类型:<string> 必须为 'AES-GCM'
aesGcmParams.tagLength#
  • 类型:<number> 生成的身份验证标记的大小(以位为单位)。此值必须为 326496104112120128 之一。默认值: 128

类:AesKeyGenParams#

aesKeyGenParams.length#

要生成的 AES 密钥的长度。这必须是 128192256

aesKeyGenParams.name#
  • 类型:<string> 必须为 'AES-CBC''AES-CTR''AES-GCM''AES-KW' 之一

类:EcdhKeyDeriveParams#

ecdhKeyDeriveParams.name#
  • 类型:<string> 必须为 'ECDH''X25519''X448'
ecdhKeyDeriveParams.public#

ECDH 密钥派生通过将一方的私钥和另一方的公钥作为输入来操作 - 使用两者来生成一个通用的共享密钥。ecdhKeyDeriveParams.public 属性设置为另一方的公钥。

类:EcdsaParams#

ecdsaParams.hash#

如果表示为 <string>,则值必须为以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果表示为 <Object>,则对象必须具有一个 name 属性,其值是上面列出的值之一。

ecdsaParams.name#
  • 类型:<string> 必须是 'ECDSA'

类:EcKeyGenParams#

ecKeyGenParams.name#
  • 类型:<string> 必须是 'ECDSA''ECDH' 之一。
ecKeyGenParams.namedCurve#
  • 类型:<string> 必须是 'P-256''P-384''P-521' 之一。

类:EcKeyImportParams#

ecKeyImportParams.name#
  • 类型:<string> 必须是 'ECDSA''ECDH' 之一。
ecKeyImportParams.namedCurve#
  • 类型:<string> 必须是 'P-256''P-384''P-521' 之一。

类:Ed448Params#

ed448Params.name#
  • 类型:<string> 必须是 'Ed448'
ed448Params.context#

context 成员表示要与消息关联的可选上下文数据。Node.js Web Crypto API 实现仅支持零长度上下文,这相当于根本不提供上下文。

类:HkdfParams#

hkdfParams.hash#

如果表示为 <string>,则值必须为以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果表示为 <Object>,则对象必须具有一个 name 属性,其值是上面列出的值之一。

hkdfParams.info#

向 HKDF 算法提供特定于应用程序的上下文输入。这可以是零长度,但必须提供。

hkdfParams.name#
hkdfParams.salt#

盐值显著提高了 HKDF 算法的强度。它应该是随机的或伪随机的,并且应该与摘要函数的输出长度相同(例如,如果使用 'SHA-256' 作为摘要,则盐应该是 256 位随机数据)。

类:HmacImportParams#

hmacImportParams.hash#

如果表示为 <string>,则值必须为以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果表示为 <Object>,则对象必须具有一个 name 属性,其值是上面列出的值之一。

hmacImportParams.length#

HMAC 密钥中的可选位数。这是可选的,并且在大多数情况下应该省略。

hmacImportParams.name#

类:HmacKeyGenParams#

hmacKeyGenParams.hash#

如果表示为 <string>,则值必须为以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果表示为 <Object>,则对象必须具有一个 name 属性,其值是上面列出的值之一。

hmacKeyGenParams.length#

为 HMAC 密钥生成位数。如果省略,长度将由使用的哈希算法确定。这是可选的,并且在大多数情况下应该省略。

hmacKeyGenParams.name#

类:Pbkdf2Params#

pbkdb2Params.hash#

如果表示为 <string>,则值必须为以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果表示为 <Object>,则对象必须具有一个 name 属性,其值是上面列出的值之一。

pbkdf2Params.iterations#

PBKDF2 算法在派生位时应进行的迭代次数。

pbkdf2Params.name#
  • 类型:<string> 必须为 'PBKDF2'
pbkdf2Params.salt#

应至少包含 16 个随机或伪随机字节。

类:RsaHashedImportParams#

rsaHashedImportParams.hash#

如果表示为 <string>,则值必须为以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果表示为 <Object>,则对象必须具有一个 name 属性,其值是上面列出的值之一。

rsaHashedImportParams.name#
  • 类型:<string> 必须为 'RSASSA-PKCS1-v1_5''RSA-PSS''RSA-OAEP' 之一。

类:RsaHashedKeyGenParams#

rsaHashedKeyGenParams.hash#

如果表示为 <string>,则值必须为以下之一

  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'

如果表示为 <Object>,则对象必须具有一个 name 属性,其值是上面列出的值之一。

rsaHashedKeyGenParams.modulusLength#

RSA 模数的长度(以位为单位)。作为最佳实践,此长度应至少为 2048

rsaHashedKeyGenParams.name#
  • 类型:<string> 必须为 'RSASSA-PKCS1-v1_5''RSA-PSS''RSA-OAEP' 之一。
rsaHashedKeyGenParams.publicExponent#

RSA 公钥指数。此项必须为 <Uint8Array>,其中包含一个大端无符号整数,且该整数必须在 32 位内。此 <Uint8Array> 可能包含任意数量的前导零位。此值必须为质数。除非有理由使用其他值,否则请使用 new Uint8Array([1, 0, 1]) (65537) 作为公钥指数。

类:RsaOaepParams#

rsaOaepParams.label#

不会加密但会绑定到所生成密文的其他字节集合。

rsaOaepParams.label 参数是可选的。

rsaOaepParams.name#
  • 类型:<string> 必须为 'RSA-OAEP'

类:RsaPssParams#

rsaPssParams.name#
  • 类型:<string> 必须为 'RSA-PSS'
rsaPssParams.saltLength#

要使用的随机盐的长度(以字节为单位)。

脚注

  1. An experimental implementation of Secure Curves in the Web Cryptography API as of 30 August 2023 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30