Web Crypto API#

History
VersionChanges
v24.8.0

KMAC algorithms are now supported.

v24.8.0

Argon2 algorithms are now supported.

v24.7.0

AES-OCB algorithm is now supported.

v24.7.0

ML-KEM algorithms are now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v24.7.0

SHA-3 algorithms are now supported.

v24.7.0

SHAKE algorithms are now supported.

v24.7.0

ML-DSA algorithms are now supported.

v23.5.0, v22.13.0, v20.19.3

AlgorithmsEd25519 andX25519 are now stable.

v19.0.0

No longer experimental except for theEd25519,Ed448,X25519, andX448 algorithms.

v20.0.0, v18.17.0

Arguments are now coerced and validated as per their WebIDL definitions like in other Web Crypto API implementations.

v18.4.0, v16.17.0

Removed proprietary'node.keyObject' import/export format.

v18.4.0, v16.17.0

Removed proprietary'NODE-DSA','NODE-DH', and'NODE-SCRYPT' algorithms.

v18.4.0, v16.17.0

Added'Ed25519','Ed448','X25519', and'X448' algorithms.

v18.4.0, v16.17.0

Removed proprietary'NODE-ED25519' and'NODE-ED448' algorithms.

v18.4.0, v16.17.0

Removed proprietary'NODE-X25519' and'NODE-X448' named curves from the'ECDH' algorithm.

Stability: 2 - Stable

Node.js provides an implementation of theWeb Crypto API standard.

UseglobalThis.crypto orrequire('node:crypto').webcrypto to access thismodule.

const { subtle } = globalThis.crypto;(asyncfunction() {const key =await subtle.generateKey({name:'HMAC',hash:'SHA-256',length:256,  },true, ['sign','verify']);const enc =newTextEncoder();const message = enc.encode('I love cupcakes');const digest =await subtle.sign({name:'HMAC',  }, key, message);})();

Modern Algorithms in the Web Cryptography API#

Stability: 1.1 - Active development

Node.js provides an implementation of the following features from theModern Algorithms in the Web Cryptography APIWICG proposal:

Algorithms:

  • 'AES-OCB'1
  • 'Argon2d'2
  • 'Argon2i'2
  • 'Argon2id'2
  • 'ChaCha20-Poly1305'
  • 'cSHAKE128'
  • 'cSHAKE256'
  • 'KMAC128'1
  • 'KMAC256'1
  • 'ML-DSA-44'3
  • 'ML-DSA-65'3
  • 'ML-DSA-87'3
  • 'ML-KEM-512'3
  • 'ML-KEM-768'3
  • 'ML-KEM-1024'3
  • 'SHA3-256'
  • 'SHA3-384'
  • 'SHA3-512'

Key Formats:

  • 'raw-public'
  • 'raw-secret'
  • 'raw-seed'

Methods:

Secure Curves in the Web Cryptography API#

Stability: 1.1 - Active development

Node.js provides an implementation of the following features from theSecure Curves in the Web Cryptography APIWICG proposal:

Algorithms:

  • 'Ed448'
  • 'X448'

Examples#

Generating keys#

The<SubtleCrypto> class can be used to generate symmetric (secret) keysor asymmetric key pairs (public key and private key).

AES keys#
const { subtle } = globalThis.crypto;asyncfunctiongenerateAesKey(length =256) {const key =await subtle.generateKey({name:'AES-CBC',    length,  },true, ['encrypt','decrypt']);return key;}
ECDSA key pairs#
const { subtle } = globalThis.crypto;asyncfunctiongenerateEcKey(namedCurve ='P-521') {const {    publicKey,    privateKey,  } =await subtle.generateKey({name:'ECDSA',    namedCurve,  },true, ['sign','verify']);return { publicKey, privateKey };}
Ed25519/X25519 key pairs#
const { subtle } = globalThis.crypto;asyncfunctiongenerateEd25519Key() {return subtle.generateKey({name:'Ed25519',  },true, ['sign','verify']);}asyncfunctiongenerateX25519Key() {return subtle.generateKey({name:'X25519',  },true, ['deriveKey']);}
HMAC keys#
const { subtle } = globalThis.crypto;asyncfunctiongenerateHmacKey(hash ='SHA-256') {const key =await subtle.generateKey({name:'HMAC',    hash,  },true, ['sign','verify']);return key;}
RSA key pairs#
const { subtle } = globalThis.crypto;const publicExponent =newUint8Array([1,0,1]);asyncfunctiongenerateRsaKey(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 };}

Encryption and decryption#

const crypto = globalThis.crypto;asyncfunctionaesEncrypt(plaintext) {const ec =newTextEncoder();const key =awaitgenerateAesKey();const iv = crypto.getRandomValues(newUint8Array(16));const ciphertext =await crypto.subtle.encrypt({name:'AES-CBC',    iv,  }, key, ec.encode(plaintext));return {    key,    iv,    ciphertext,  };}asyncfunctionaesDecrypt(ciphertext, key, iv) {const dec =newTextDecoder();const plaintext =await crypto.subtle.decrypt({name:'AES-CBC',    iv,  }, key, ciphertext);return dec.decode(plaintext);}

Exporting and importing keys#

const { subtle } = globalThis.crypto;asyncfunctiongenerateAndExportHmacKey(format ='jwk', hash ='SHA-512') {const key =await subtle.generateKey({name:'HMAC',    hash,  },true, ['sign','verify']);return subtle.exportKey(format, key);}asyncfunctionimportHmacKey(keyData, format ='jwk', hash ='SHA-512') {const key =await subtle.importKey(format, keyData, {name:'HMAC',    hash,  },true, ['sign','verify']);return key;}

Wrapping and unwrapping keys#

const { subtle } = globalThis.crypto;asyncfunctiongenerateAndWrapHmacKey(format ='jwk', hash ='SHA-512') {const [    key,    wrappingKey,  ] =awaitPromise.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 };}asyncfunctionunwrapHmacKey(  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;}

Sign and verify#

const { subtle } = globalThis.crypto;asyncfunctionsign(key, data) {const ec =newTextEncoder();const signature =await subtle.sign('RSASSA-PKCS1-v1_5', key, ec.encode(data));return signature;}asyncfunctionverify(key, signature, data) {const ec =newTextEncoder();const verified =await subtle.verify('RSASSA-PKCS1-v1_5',      key,      signature,      ec.encode(data));return verified;}

Deriving bits and keys#

const { subtle } = globalThis.crypto;asyncfunctionpbkdf2(pass, salt, iterations =1000, length =256) {const ec =newTextEncoder();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;}asyncfunctionpbkdf2Key(pass, salt, iterations =1000, length =256) {const ec =newTextEncoder();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;}

Digest#

const { subtle } = globalThis.crypto;asyncfunctiondigest(data, algorithm ='SHA-512') {const ec =newTextEncoder();const digest =await subtle.digest(algorithm, ec.encode(data));return digest;}

Checking for runtime algorithm support#

SubtleCrypto.supports() allows feature detection in Web Crypto API,which can be used to detect whether a given algorithm identifier(including its parameters) is supported for the given operation.

This example derives a key from a password using Argon2, if available,or PBKDF2, otherwise; and then encrypts and decrypts some text with itusing AES-OCB, if available, and AES-GCM, otherwise.

const {SubtleCrypto, crypto } = globalThis;const password ='correct horse battery staple';const derivationAlg =SubtleCrypto.supports?.('importKey','Argon2id') ?'Argon2id' :'PBKDF2';const encryptionAlg =SubtleCrypto.supports?.('importKey','AES-OCB') ?'AES-OCB' :'AES-GCM';const passwordKey =await crypto.subtle.importKey(  derivationAlg ==='Argon2id' ?'raw-secret' :'raw',newTextEncoder().encode(password),  derivationAlg,false,  ['deriveKey'],);const nonce = crypto.getRandomValues(newUint8Array(16));const derivationParams =  derivationAlg ==='Argon2id' ?    {      nonce,parallelism:4,memory:2 **21,passes:1,    } :    {salt: nonce,iterations:100_000,hash:'SHA-256',    };const key =await crypto.subtle.deriveKey(  {name: derivationAlg,    ...derivationParams,  },  passwordKey,  {name: encryptionAlg,length:256,  },false,  ['encrypt','decrypt'],);const plaintext ='Hello, world!';const iv = crypto.getRandomValues(newUint8Array(16));const encrypted =await crypto.subtle.encrypt(  {name: encryptionAlg, iv },  key,newTextEncoder().encode(plaintext),);const decrypted =newTextDecoder().decode(await crypto.subtle.decrypt(  {name: encryptionAlg, iv },  key,  encrypted,));

Algorithm matrix#

The tables details the algorithms supported by the Node.js Web Crypto APIimplementation and the APIs supported for each:

Key Management APIs#

Algorithmsubtle.generateKey()subtle.exportKey()subtle.importKey()subtle.getPublicKey()
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'AES-OCB'
'Argon2d'
'Argon2i'
'Argon2id'
'ChaCha20-Poly1305'4
'ECDH'
'ECDSA'
'Ed25519'
'Ed448'5
'HKDF'
'HMAC'
'KMAC128'4
'KMAC256'4
'ML-DSA-44'4
'ML-DSA-65'4
'ML-DSA-87'4
'ML-KEM-512'4
'ML-KEM-768'4
'ML-KEM-1024'4
'PBKDF2'
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'
'X25519'
'X448'5

Crypto Operation APIs#

Column Legend:

AlgorithmEncryptionSignatures and MACKey or Bits DerivationKey WrappingKey EncapsulationDigest
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'AES-OCB'
'Argon2d'
'Argon2i'
'Argon2id'
'ChaCha20-Poly1305'4
'cSHAKE128'4
'cSHAKE256'4
'ECDH'
'ECDSA'
'Ed25519'
'Ed448'5
'HKDF'
'HMAC'
'KMAC128'4
'KMAC256'4
'ML-DSA-44'4
'ML-DSA-65'4
'ML-DSA-87'4
'ML-KEM-512'4
'ML-KEM-768'4
'ML-KEM-1024'4
'PBKDF2'
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'
'SHA-1'
'SHA-256'
'SHA-384'
'SHA-512'
'SHA3-256'4
'SHA3-384'4
'SHA3-512'4
'X25519'
'X448'5

Class:Crypto#

Added in: v15.0.0

globalThis.crypto is an instance of theCryptoclass.Crypto is a singleton that provides access to the remainder of thecrypto API.

crypto.subtle#

Added in: v15.0.0

Provides access to theSubtleCrypto API.

crypto.getRandomValues(typedArray)#

Added in: v15.0.0

Generates cryptographically strong random values. The giventypedArray isfilled with random values, and a reference totypedArray is returned.

The giventypedArray must be an integer-based instance of<TypedArray>,i.e.Float32Array andFloat64Array are not accepted.

An error will be thrown if the giventypedArray is larger than 65,536 bytes.

crypto.randomUUID()#

Added in: v16.7.0

Generates a randomRFC 4122 version 4 UUID. The UUID is generated using acryptographic pseudorandom number generator.

Class:CryptoKey#

Added in: v15.0.0

cryptoKey.algorithm#

Added in: v15.0.0

An object detailing the algorithm for which the key can be used along withadditional algorithm-specific parameters.

Read-only.

cryptoKey.extractable#

Added in: v15.0.0

Whentrue, the<CryptoKey> can be extracted using eithersubtle.exportKey() orsubtle.wrapKey().

Read-only.

cryptoKey.type#

Added in: v15.0.0
  • Type:<string> One of'secret','private', or'public'.

A string identifying whether the key is a symmetric ('secret') orasymmetric ('private' or'public') key.

cryptoKey.usages#

Added in: v15.0.0

An array of strings identifying the operations for which thekey may be used.

The possible usages are:

Valid key usages depend on the key algorithm (identified bycryptokey.algorithm.name).

Column Legend:

Supported Key AlgorithmEncryptionSignatures and MACKey or Bits DerivationKey WrappingKey Encapsulation
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'AES-OCB'
'Argon2d'
'Argon2i'
'Argon2id'
'ChaCha20-Poly1305'4
'ECDH'
'ECDSA'
'Ed25519'
'Ed448'5
'HDKF'
'HMAC'
'KMAC128'4
'KMAC256'4
'ML-DSA-44'4
'ML-DSA-65'4
'ML-DSA-87'4
'ML-KEM-512'4
'ML-KEM-768'4
'ML-KEM-1024'4
'PBKDF2'
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'
'X25519'
'X448'5

Class:CryptoKeyPair#

Added in: v15.0.0

TheCryptoKeyPair is a simple dictionary object withpublicKey andprivateKey properties, representing an asymmetric key pair.

cryptoKeyPair.privateKey#

Added in: v15.0.0

cryptoKeyPair.publicKey#

Added in: v15.0.0

Class:SubtleCrypto#

Added in: v15.0.0

Static method:SubtleCrypto.supports(operation, algorithm[, lengthOrAdditionalAlgorithm])#

Added in: v24.7.0

Stability: 1.1 - Active development

  • operation<string> "encrypt", "decrypt", "sign", "verify", "digest", "generateKey", "deriveKey", "deriveBits", "importKey", "exportKey", "getPublicKey", "wrapKey", "unwrapKey", "encapsulateBits", "encapsulateKey", "decapsulateBits", or "decapsulateKey"
  • algorithm<string> |<Algorithm>
  • lengthOrAdditionalAlgorithm<null> |<number> |<string> |<Algorithm> |<undefined> Depending on the operation this is either ignored, the value of the length argument when operation is "deriveBits", the algorithm of key to be derived when operation is "deriveKey", the algorithm of key to be exported before wrapping when operation is "wrapKey", the algorithm of key to be imported after unwrapping when operation is "unwrapKey", or the algorithm of key to be imported after en/decapsulating a key when operation is "encapsulateKey" or "decapsulateKey".Default:null when operation is "deriveBits",undefined otherwise.
  • Returns:<boolean> Indicating whether the implementation supports the given operation

Allows feature detection in Web Crypto API,which can be used to detect whether a given algorithm identifier(including its parameters) is supported for the given operation.

SeeChecking for runtime algorithm support for an example use of this method.

subtle.decapsulateBits(decapsulationAlgorithm, decapsulationKey, ciphertext)#

Added in: v24.7.0

Stability: 1.1 - Active development

A message recipient uses their asymmetric private key to decrypt an"encapsulated key" (ciphertext), thereby recovering a temporary symmetrickey (represented as<ArrayBuffer>) which is then used to decrypt a message.

The algorithms currently supported include:

  • 'ML-KEM-512'4
  • 'ML-KEM-768'4
  • 'ML-KEM-1024'4

subtle.decapsulateKey(decapsulationAlgorithm, decapsulationKey, ciphertext, sharedKeyAlgorithm, extractable, usages)#

Added in: v24.7.0

Stability: 1.1 - Active development

A message recipient uses their asymmetric private key to decrypt an"encapsulated key" (ciphertext), thereby recovering a temporary symmetrickey (represented as<CryptoKey>) which is then used to decrypt a message.

The algorithms currently supported include:

  • 'ML-KEM-512'4
  • 'ML-KEM-768'4
  • 'ML-KEM-1024'4

subtle.decrypt(algorithm, key, data)#

History
VersionChanges
v24.7.0

AES-OCB algorithm is now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v15.0.0

Added in: v15.0.0

Using the method and parameters specified inalgorithm and the keyingmaterial provided bykey, this method attempts to decipher theprovideddata. If successful, the returned promise will be resolved withan<ArrayBuffer> containing the plaintext result.

The algorithms currently supported include:

  • 'AES-CBC'
  • 'AES-CTR'
  • 'AES-GCM'
  • 'AES-OCB'4
  • 'ChaCha20-Poly1305'4
  • 'RSA-OAEP'

subtle.deriveBits(algorithm, baseKey[, length])#

History
VersionChanges
v24.8.0

Argon2 algorithms are now supported.

v22.5.0, v20.17.0, v18.20.5

The length parameter is now optional for'ECDH','X25519', and'X448'.

v18.4.0, v16.17.0

Added'X25519', and'X448' algorithms.

v15.0.0

Added in: v15.0.0

Using the method and parameters specified inalgorithm and the keyingmaterial provided bybaseKey, this method attempts to generatelength bits.

Whenlength is not provided ornull the maximum number of bits for a givenalgorithm is generated. This is allowed for the'ECDH','X25519', and'X448'5algorithms, for other algorithmslength is required to be a number.

If successful, the returned promise will be resolved with an<ArrayBuffer>containing the generated data.

The algorithms currently supported include:

  • 'Argon2d'4
  • 'Argon2i'4
  • 'Argon2id'4
  • 'ECDH'
  • 'HKDF'
  • 'PBKDF2'
  • 'X25519'
  • 'X448'5

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

History
VersionChanges
v24.8.0

Argon2 algorithms are now supported.

v18.4.0, v16.17.0

Added'X25519', and'X448' algorithms.

v15.0.0

Added in: v15.0.0

Using the method and parameters specified inalgorithm, and the keyingmaterial provided bybaseKey, this method attempts to generatea new<CryptoKey> based on the method and parameters inderivedKeyAlgorithm.

Calling this method is equivalent to callingsubtle.deriveBits() togenerate raw keying material, then passing the result into thesubtle.importKey() method using thederiveKeyAlgorithm,extractable, andkeyUsages parameters as input.

The algorithms currently supported include:

  • 'Argon2d'4
  • 'Argon2i'4
  • 'Argon2id'4
  • 'ECDH'
  • 'HKDF'
  • 'PBKDF2'
  • 'X25519'
  • 'X448'5

subtle.digest(algorithm, data)#

History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v24.7.0

SHAKE algorithms are now supported.

v15.0.0

Added in: v15.0.0

Using the method identified byalgorithm, this method attempts togenerate a digest ofdata. If successful, the returned promise is resolvedwith an<ArrayBuffer> containing the computed digest.

Ifalgorithm is provided as a<string>, it must be one of:

  • 'cSHAKE128'4
  • 'cSHAKE256'4
  • 'SHA-1'
  • 'SHA-256'
  • 'SHA-384'
  • 'SHA-512'
  • 'SHA3-256'4
  • 'SHA3-384'4
  • 'SHA3-512'4

Ifalgorithm is provided as an<Object>, it must have aname propertywhose value is one of the above.

subtle.encapsulateBits(encapsulationAlgorithm, encapsulationKey)#

Added in: v24.7.0

Stability: 1.1 - Active development

Uses a message recipient's asymmetric public key to encrypt a temporary symmetric key.This encrypted key is the "encapsulated key" represented as<EncapsulatedBits>.

The algorithms currently supported include:

  • 'ML-KEM-512'4
  • 'ML-KEM-768'4
  • 'ML-KEM-1024'4

subtle.encapsulateKey(encapsulationAlgorithm, encapsulationKey, sharedKeyAlgorithm, extractable, usages)#

Added in: v24.7.0

Stability: 1.1 - Active development

Uses a message recipient's asymmetric public key to encrypt a temporary symmetric key.This encrypted key is the "encapsulated key" represented as<EncapsulatedKey>.

The algorithms currently supported include:

  • 'ML-KEM-512'4
  • 'ML-KEM-768'4
  • 'ML-KEM-1024'4

subtle.encrypt(algorithm, key, data)#

History
VersionChanges
v24.7.0

AES-OCB algorithm is now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v15.0.0

Added in: v15.0.0

Using the method and parameters specified byalgorithm and the keyingmaterial provided bykey, this method attempts to encipherdata.If successful, the returned promise is resolved with an<ArrayBuffer>containing the encrypted result.

The algorithms currently supported include:

  • 'AES-CBC'
  • 'AES-CTR'
  • 'AES-GCM'
  • 'AES-OCB'4
  • 'ChaCha20-Poly1305'4
  • 'RSA-OAEP'

subtle.exportKey(format, key)#

History
VersionChanges
v24.8.0

KMAC algorithms are now supported.

v24.7.0

ML-KEM algorithms are now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v24.7.0

ML-DSA algorithms are now supported.

v18.4.0, v16.17.0

Added'Ed25519','Ed448','X25519', and'X448' algorithms.

v15.9.0

Removed'NODE-DSA' JWK export.

v15.0.0

Added in: v15.0.0

Exports the given key into the specified format, if supported.

If the<CryptoKey> is not extractable, the returned promise will reject.

Whenformat is either'pkcs8' or'spki' and the export is successful,the returned promise will be resolved with an<ArrayBuffer> containing theexported key data.

Whenformat is'jwk' and the export is successful, the returned promisewill be resolved with a JavaScript object conforming to theJSON Web Keyspecification.

Supported Key Algorithm'spki''pkcs8''jwk''raw''raw-secret''raw-public''raw-seed'
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'AES-OCB'4
'ChaCha20-Poly1305'4
'ECDH'
'ECDSA'
'Ed25519'
'Ed448'5
'HMAC'
'KMAC128'4
'KMAC256'4
'ML-DSA-44'4
'ML-DSA-65'4
'ML-DSA-87'4
'ML-KEM-512'4
'ML-KEM-768'4
'ML-KEM-1024'4
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'

subtle.getPublicKey(key, keyUsages)#

Added in: v24.7.0

Stability: 1.1 - Active development

Derives the public key from a given private key.

subtle.generateKey(algorithm, extractable, keyUsages)#

History
VersionChanges
v24.8.0

KMAC algorithms are now supported.

v24.7.0

ML-KEM algorithms are now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v24.7.0

ML-DSA algorithms are now supported.

v15.0.0

Added in: v15.0.0

Using the parameters provided inalgorithm, this methodattempts to generate new keying material. Depending on the algorithm usedeither a single<CryptoKey> or a<CryptoKeyPair> is generated.

The<CryptoKeyPair> (public and private key) generating algorithms supportedinclude:

  • 'ECDH'
  • 'ECDSA'
  • 'Ed25519'
  • 'Ed448'5
  • 'ML-DSA-44'4
  • 'ML-DSA-65'4
  • 'ML-DSA-87'4
  • 'ML-KEM-512'4
  • 'ML-KEM-768'4
  • 'ML-KEM-1024'4
  • 'RSA-OAEP'
  • 'RSA-PSS'
  • 'RSASSA-PKCS1-v1_5'
  • 'X25519'
  • 'X448'5

The<CryptoKey> (secret key) generating algorithms supported include:

  • 'AES-CBC'
  • 'AES-CTR'
  • 'AES-GCM'
  • 'AES-KW'
  • 'AES-OCB'4
  • 'ChaCha20-Poly1305'4
  • 'HMAC'
  • 'KMAC128'4
  • 'KMAC256'4

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

History
VersionChanges
v24.8.0

KMAC algorithms are now supported.

v24.7.0

ML-KEM algorithms are now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v24.7.0

ML-DSA algorithms are now supported.

v18.4.0, v16.17.0

Added'Ed25519','Ed448','X25519', and'X448' algorithms.

v15.9.0

Removed'NODE-DSA' JWK import.

v15.0.0

Added in: v15.0.0

This method attempts to interpret the providedkeyDataas the givenformat to create a<CryptoKey> instance using the providedalgorithm,extractable, andkeyUsages arguments. If the import issuccessful, the returned promise will be resolved with a<CryptoKey>representation of the key material.

If importing KDF algorithm keys,extractable must befalse.

The algorithms currently supported include:

Supported Key Algorithm'spki''pkcs8''jwk''raw''raw-secret''raw-public''raw-seed'
'AES-CBC'
'AES-CTR'
'AES-GCM'
'AES-KW'
'AES-OCB'4
'Argon2d'4
'Argon2i'4
'Argon2id'4
'ChaCha20-Poly1305'4
'ECDH'
'ECDSA'
'Ed25519'
'Ed448'5
'HDKF'
'HMAC'
'KMAC128'4
'KMAC256'4
'ML-DSA-44'4
'ML-DSA-65'4
'ML-DSA-87'4
'ML-KEM-512'4
'ML-KEM-768'4
'ML-KEM-1024'4
'PBKDF2'
'RSA-OAEP'
'RSA-PSS'
'RSASSA-PKCS1-v1_5'
'X25519'
'X448'5

subtle.sign(algorithm, key, data)#

History
VersionChanges
v24.8.0

KMAC algorithms are now supported.

v24.7.0

ML-DSA algorithms are now supported.

v18.4.0, v16.17.0

Added'Ed25519', and'Ed448' algorithms.

v15.0.0

Added in: v15.0.0

Using the method and parameters given byalgorithm and the keying materialprovided bykey, this method attempts to generate a cryptographicsignature ofdata. If successful, the returned promise is resolved withan<ArrayBuffer> containing the generated signature.

The algorithms currently supported include:

  • 'ECDSA'
  • 'Ed25519'
  • 'Ed448'5
  • 'HMAC'
  • 'KMAC128'4
  • 'KMAC256'4
  • 'ML-DSA-44'4
  • 'ML-DSA-65'4
  • 'ML-DSA-87'4
  • 'RSA-PSS'
  • 'RSASSA-PKCS1-v1_5'

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

History
VersionChanges
v24.7.0

AES-OCB algorithm is now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v15.0.0

Added in: v15.0.0

In cryptography, "wrapping a key" refers to exporting and then encrypting thekeying material. This method attempts to decrypt a wrappedkey and create a<CryptoKey> instance. It is equivalent to callingsubtle.decrypt() first on the encrypted key data (using thewrappedKey,unwrapAlgo, andunwrappingKey arguments as input) then passing the resultsto thesubtle.importKey() method using theunwrappedKeyAlgo,extractable, andkeyUsages arguments as inputs. If successful, the returnedpromise is resolved with a<CryptoKey> object.

The wrapping algorithms currently supported include:

  • 'AES-CBC'
  • 'AES-CTR'
  • 'AES-GCM'
  • 'AES-KW'
  • 'AES-OCB'4
  • 'ChaCha20-Poly1305'4
  • 'RSA-OAEP'

The unwrapped key algorithms supported include:

  • 'AES-CBC'
  • 'AES-CTR'
  • 'AES-GCM'
  • 'AES-KW'
  • 'AES-OCB'4
  • 'ChaCha20-Poly1305'4
  • 'ECDH'
  • 'ECDSA'
  • 'Ed25519'
  • 'Ed448'5
  • 'HMAC'
  • 'KMAC128'5
  • 'KMAC256'5
  • 'ML-DSA-44'4
  • 'ML-DSA-65'4
  • 'ML-DSA-87'4
  • 'ML-KEM-512'4
  • 'ML-KEM-768'4
  • 'ML-KEM-1024'4v
  • 'RSA-OAEP'
  • 'RSA-PSS'
  • 'RSASSA-PKCS1-v1_5'
  • 'X25519'
  • 'X448'5

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

History
VersionChanges
v24.8.0

KMAC algorithms are now supported.

v24.7.0

ML-DSA algorithms are now supported.

v18.4.0, v16.17.0

Added'Ed25519', and'Ed448' algorithms.

v15.0.0

Added in: v15.0.0

Using the method and parameters given inalgorithm and the keying materialprovided bykey, this method attempts to verify thatsignature isa valid cryptographic signature ofdata. The returned promise is resolvedwith eithertrue orfalse.

The algorithms currently supported include:

  • 'ECDSA'
  • 'Ed25519'
  • 'Ed448'5
  • 'HMAC'
  • 'KMAC128'5
  • 'KMAC256'5
  • 'ML-DSA-44'4
  • 'ML-DSA-65'4
  • 'ML-DSA-87'4
  • 'RSA-PSS'
  • 'RSASSA-PKCS1-v1_5'

subtle.wrapKey(format, key, wrappingKey, wrapAlgo)#

History
VersionChanges
v24.7.0

AES-OCB algorithm is now supported.

v24.7.0

ChaCha20-Poly1305 algorithm is now supported.

v15.0.0

Added in: v15.0.0

In cryptography, "wrapping a key" refers to exporting and then encrypting thekeying material. This method exports the keying material intothe format identified byformat, then encrypts it using the method andparameters specified bywrapAlgo and the keying material provided bywrappingKey. It is the equivalent to callingsubtle.exportKey() usingformat andkey as the arguments, then passing the result to thesubtle.encrypt() method usingwrappingKey andwrapAlgo as inputs. Ifsuccessful, the returned promise will be resolved with an<ArrayBuffer>containing the encrypted key data.

The wrapping algorithms currently supported include:

  • 'AES-CBC'
  • 'AES-CTR'
  • 'AES-GCM'
  • 'AES-KW'
  • 'AES-OCB'4
  • 'ChaCha20-Poly1305'4
  • 'RSA-OAEP'

Algorithm parameters#

The algorithm parameter objects define the methods and parameters used bythe various<SubtleCrypto> methods. While described here as "classes", theyare simple JavaScript dictionary objects.

Class:Algorithm#

Added in: v15.0.0
Algorithm.name#
Added in: v15.0.0

Class:AeadParams#

Added in: v15.0.0
aeadParams.additionalData#
Added in: v15.0.0

Extra input that is not encrypted but is included in the authenticationof the data. The use ofadditionalData is optional.

aeadParams.iv#
Added in: v15.0.0

The initialization vector must be unique for every encryption operation using agiven key.

aeadParams.name#
Added in: v15.0.0
  • Type:<string> Must be'AES-GCM','AES-OCB', or'ChaCha20-Poly1305'.
aeadParams.tagLength#
Added in: v15.0.0
  • Type:<number> The size in bits of the generated authentication tag.

Class:AesDerivedKeyParams#

Added in: v15.0.0
aesDerivedKeyParams.name#
Added in: v15.0.0
  • Type:<string> Must be one of'AES-CBC','AES-CTR','AES-GCM','AES-OCB', or'AES-KW'
aesDerivedKeyParams.length#
Added in: v15.0.0

The length of the AES key to be derived. This must be either128,192,or256.

Class:AesCbcParams#

Added in: v15.0.0
aesCbcParams.iv#
Added in: v15.0.0

Provides the initialization vector. It must be exactly 16-bytes in lengthand should be unpredictable and cryptographically random.

aesCbcParams.name#
Added in: v15.0.0

Class:AesCtrParams#

Added in: v15.0.0
aesCtrParams.counter#
Added in: v15.0.0

The initial value of the counter block. This must be exactly 16 bytes long.

TheAES-CTR method uses the rightmostlength bits of the block as thecounter and the remaining bits as the nonce.

aesCtrParams.length#
Added in: v15.0.0
  • Type:<number> The number of bits in theaesCtrParams.counter that areto be used as the counter.
aesCtrParams.name#
Added in: v15.0.0

Class:AesKeyAlgorithm#

Added in: v15.0.0
aesKeyAlgorithm.length#
Added in: v15.0.0

The length of the AES key in bits.

aesKeyAlgorithm.name#
Added in: v15.0.0

Class:AesKeyGenParams#

Added in: v15.0.0
aesKeyGenParams.length#
Added in: v15.0.0

The length of the AES key to be generated. This must be either128,192,or256.

aesKeyGenParams.name#
Added in: v15.0.0
  • Type:<string> Must be one of'AES-CBC','AES-CTR','AES-GCM', or'AES-KW'

Class:Argon2Params#

Added in: v24.8.0
argon2Params.associatedData#
Added in: v24.8.0

Represents the optional associated data.

argon2Params.memory#
Added in: v24.8.0

Represents the memory size in kibibytes. It must be at least 8 times the degree of parallelism.

argon2Params.name#
Added in: v24.8.0
  • Type:<string> Must be one of'Argon2d','Argon2i', or'Argon2id'.
argon2Params.nonce#
Added in: v24.8.0

Represents the nonce, which is a salt for password hashing applications.

argon2Params.parallelism#
Added in: v24.8.0

Represents the degree of parallelism.

argon2Params.passes#
Added in: v24.8.0

Represents the number of passes.

argon2Params.secretValue#
Added in: v24.8.0

Represents the optional secret value.

argon2Params.version#
Added in: v24.8.0

Represents the Argon2 version number. The default and currently only defined version is19 (0x13).

Class:ContextParams#

Added in: v24.7.0
contextParams.name#
Added in: v24.7.0
  • Type:<string> Must beEd4485,'ML-DSA-44'4,'ML-DSA-65'4, or'ML-DSA-87'4.
contextParams.context#
History
VersionChanges
v24.8.0

Non-empty context is now supported.

v24.7.0

Added in: v24.7.0

Thecontext member represents the optional context data to associate withthe message.

Class:CShakeParams#

Added in: v24.7.0
cShakeParams.customization#
Added in: v24.7.0

Thecustomization member represents the customization string.The Node.js Web Crypto API implementation only supports zero-length customizationwhich is equivalent to not providing customization at all.

cShakeParams.functionName#
Added in: v24.7.0

ThefunctionName member represents represents the function name, used by NIST to definefunctions based on cSHAKE.The Node.js Web Crypto API implementation only supports zero-length functionNamewhich is equivalent to not providing functionName at all.

cShakeParams.length#
Added in: v24.7.0
  • Type:<number> represents the requested output length in bits.
cShakeParams.name#
Added in: v24.7.0

Class:EcdhKeyDeriveParams#

Added in: v15.0.0
ecdhKeyDeriveParams.name#
Added in: v15.0.0
  • Type:<string> Must be'ECDH','X25519', or'X448'5.
ecdhKeyDeriveParams.public#
Added in: v15.0.0

ECDH key derivation operates by taking as input one parties private key andanother parties public key -- using both to generate a common shared secret.TheecdhKeyDeriveParams.public property is set to the other parties publickey.

Class:EcdsaParams#

Added in: v15.0.0
ecdsaParams.hash#
History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v15.0.0

Added in: v15.0.0

If represented as a<string>, the value must be one of:

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

If represented as an<Algorithm>, the object'sname propertymust be one of the above listed values.

ecdsaParams.name#
Added in: v15.0.0

Class:EcKeyAlgorithm#

Added in: v15.0.0
ecKeyAlgorithm.name#
Added in: v15.0.0
ecKeyAlgorithm.namedCurve#
Added in: v15.0.0

Class:EcKeyGenParams#

Added in: v15.0.0
ecKeyGenParams.name#
Added in: v15.0.0
  • Type:<string> Must be one of'ECDSA' or'ECDH'.
ecKeyGenParams.namedCurve#
Added in: v15.0.0
  • Type:<string> Must be one of'P-256','P-384','P-521'.

Class:EcKeyImportParams#

Added in: v15.0.0
ecKeyImportParams.name#
Added in: v15.0.0
  • Type:<string> Must be one of'ECDSA' or'ECDH'.
ecKeyImportParams.namedCurve#
Added in: v15.0.0
  • Type:<string> Must be one of'P-256','P-384','P-521'.

Class:EncapsulatedBits#

Added in: v24.7.0

A temporary symmetric secret key (represented as<ArrayBuffer>) for message encryptionand the ciphertext (that can be transmitted to the message recipient along with themessage) encrypted by this shared key. The recipient uses their private key to determinewhat the shared key is which then allows them to decrypt the message.

encapsulatedBits.ciphertext#
Added in: v24.7.0
encapsulatedBits.sharedKey#
Added in: v24.7.0

Class:EncapsulatedKey#

Added in: v24.7.0

A temporary symmetric secret key (represented as<CryptoKey>) for message encryptionand the ciphertext (that can be transmitted to the message recipient along with themessage) encrypted by this shared key. The recipient uses their private key to determinewhat the shared key is which then allows them to decrypt the message.

encapsulatedKey.ciphertext#
Added in: v24.7.0
encapsulatedKey.sharedKey#
Added in: v24.7.0

Class:HkdfParams#

Added in: v15.0.0
hkdfParams.hash#
History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v15.0.0

Added in: v15.0.0

If represented as a<string>, the value must be one of:

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

If represented as an<Algorithm>, the object'sname propertymust be one of the above listed values.

hkdfParams.info#
Added in: v15.0.0

Provides application-specific contextual input to the HKDF algorithm.This can be zero-length but must be provided.

hkdfParams.name#
Added in: v15.0.0
hkdfParams.salt#
Added in: v15.0.0

The salt value significantly improves the strength of the HKDF algorithm.It should be random or pseudorandom and should be the same length as theoutput of the digest function (for instance, if using'SHA-256' as thedigest, the salt should be 256-bits of random data).

Class:HmacImportParams#

Added in: v15.0.0
hmacImportParams.hash#
History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v15.0.0

Added in: v15.0.0

If represented as a<string>, the value must be one of:

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

If represented as an<Algorithm>, the object'sname propertymust be one of the above listed values.

hmacImportParams.length#
Added in: v15.0.0

The optional number of bits in the HMAC key. This is optional and shouldbe omitted for most cases.

hmacImportParams.name#
Added in: v15.0.0

Class:HmacKeyAlgorithm#

Added in: v15.0.0
hmacKeyAlgorithm.hash#
Added in: v15.0.0
hmacKeyAlgorithm.length#
Added in: v15.0.0

The length of the HMAC key in bits.

hmacKeyAlgorithm.name#
Added in: v15.0.0

Class:HmacKeyGenParams#

Added in: v15.0.0
hmacKeyGenParams.hash#
History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v15.0.0

Added in: v15.0.0

If represented as a<string>, the value must be one of:

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

If represented as an<Algorithm>, the object'sname propertymust be one of the above listed values.

hmacKeyGenParams.length#
Added in: v15.0.0

The number of bits to generate for the HMAC key. If omitted,the length will be determined by the hash algorithm used.This is optional and should be omitted for most cases.

hmacKeyGenParams.name#
Added in: v15.0.0

Class:KeyAlgorithm#

Added in: v15.0.0
keyAlgorithm.name#
Added in: v15.0.0

Class:KmacImportParams#

Added in: v24.8.0
kmacImportParams.length#
Added in: v24.8.0

The optional number of bits in the KMAC key. This is optional and shouldbe omitted for most cases.

kmacImportParams.name#
Added in: v24.8.0
  • Type:<string> Must be'KMAC128' or'KMAC256'.

Class:KmacKeyAlgorithm#

Added in: v24.8.0
kmacKeyAlgorithm.length#
Added in: v24.8.0

The length of the KMAC key in bits.

kmacKeyAlgorithm.name#
Added in: v24.8.0

Class:KmacKeyGenParams#

Added in: v24.8.0
kmacKeyGenParams.length#
Added in: v24.8.0

The number of bits to generate for the KMAC key. If omitted,the length will be determined by the KMAC algorithm used.This is optional and should be omitted for most cases.

kmacKeyGenParams.name#
Added in: v24.8.0
  • Type:<string> Must be'KMAC128' or'KMAC256'.

Class:KmacParams#

Added in: v24.8.0
kmacParams.algorithm#
Added in: v24.8.0
  • Type:<string> Must be'KMAC128' or'KMAC256'.
kmacParams.customization#
Added in: v24.8.0

Thecustomization member represents the optional customization string.

kmacParams.length#
Added in: v24.8.0

The length of the output in bytes. This must be a positive integer.

Class:Pbkdf2Params#

Added in: v15.0.0
pbkdf2Params.hash#
History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v15.0.0

Added in: v15.0.0

If represented as a<string>, the value must be one of:

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

If represented as an<Algorithm>, the object'sname propertymust be one of the above listed values.

pbkdf2Params.iterations#
Added in: v15.0.0

The number of iterations the PBKDF2 algorithm should make when deriving bits.

pbkdf2Params.name#
Added in: v15.0.0
pbkdf2Params.salt#
Added in: v15.0.0

Should be at least 16 random or pseudorandom bytes.

Class:RsaHashedImportParams#

Added in: v15.0.0
rsaHashedImportParams.hash#
History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v15.0.0

Added in: v15.0.0

If represented as a<string>, the value must be one of:

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

If represented as an<Algorithm>, the object'sname propertymust be one of the above listed values.

rsaHashedImportParams.name#
Added in: v15.0.0
  • Type:<string> Must be one of'RSASSA-PKCS1-v1_5','RSA-PSS', or'RSA-OAEP'.

Class:RsaHashedKeyAlgorithm#

Added in: v15.0.0
rsaHashedKeyAlgorithm.hash#
Added in: v15.0.0
rsaHashedKeyAlgorithm.modulusLength#
Added in: v15.0.0

The length in bits of the RSA modulus.

rsaHashedKeyAlgorithm.name#
Added in: v15.0.0
rsaHashedKeyAlgorithm.publicExponent#
Added in: v15.0.0

The RSA public exponent.

Class:RsaHashedKeyGenParams#

Added in: v15.0.0
rsaHashedKeyGenParams.hash#
History
VersionChanges
v24.7.0

SHA-3 algorithms are now supported.

v15.0.0

Added in: v15.0.0

If represented as a<string>, the value must be one of:

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

If represented as an<Algorithm>, the object'sname propertymust be one of the above listed values.

rsaHashedKeyGenParams.modulusLength#
Added in: v15.0.0

The length in bits of the RSA modulus. As a best practice, this should beat least2048.

rsaHashedKeyGenParams.name#
Added in: v15.0.0
  • Type:<string> Must be one of'RSASSA-PKCS1-v1_5','RSA-PSS', or'RSA-OAEP'.
rsaHashedKeyGenParams.publicExponent#
Added in: v15.0.0

The RSA public exponent. This must be a<Uint8Array> containing a big-endian,unsigned integer that must fit within 32-bits. The<Uint8Array> may contain anarbitrary number of leading zero-bits. The value must be a prime number. Unlessthere is reason to use a different value, usenew Uint8Array([1, 0, 1])(65537) as the public exponent.

Class:RsaOaepParams#

Added in: v15.0.0
rsaOaepParams.label#
Added in: v15.0.0

An additional collection of bytes that will not be encrypted, but will be boundto the generated ciphertext.

ThersaOaepParams.label parameter is optional.

rsaOaepParams.name#
Added in: v15.0.0

Class:RsaPssParams#

Added in: v15.0.0
rsaPssParams.name#
Added in: v15.0.0
rsaPssParams.saltLength#
Added in: v15.0.0

The length (in bytes) of the random salt to use.

Footnotes

  1. Requires OpenSSL >= 3.023

  2. Requires OpenSSL >= 3.223

  3. Requires OpenSSL >= 3.523456

  4. SeeModern Algorithms in the Web Cryptography API23456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150

  5. SeeSecure Curves in the Web Cryptography API23456789101112131415161718192021222324