@adviser/cement 0.2.27 → 0.2.28

Sign up to get free protection for your applications and to get access to all the features.
package/index.cjs CHANGED
@@ -9363,6 +9363,7 @@ function digestSHA256(data) {
9363
9363
  function toCryptoRuntime(cryptoOpts = {}) {
9364
9364
  const runtime = {
9365
9365
  importKey: cryptoOpts.importKey || crypto.subtle.importKey.bind(crypto.subtle),
9366
+ exportKey: cryptoOpts.exportKey || crypto.subtle.exportKey.bind(crypto.subtle),
9366
9367
  encrypt: cryptoOpts.encrypt || crypto.subtle.encrypt.bind(crypto.subtle),
9367
9368
  decrypt: cryptoOpts.decrypt || crypto.subtle.decrypt.bind(crypto.subtle),
9368
9369
  randomBytes: cryptoOpts.randomBytes || randomBytes,