shogun-core 6.2.2 → 6.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -144397,7 +144397,8 @@ exports.importSignalPublicKey = importSignalPublicKey;
144397
144397
  const importSignalSigningPublicKey = async (keyBytes) => {
144398
144398
  return await crypto.subtle.importKey("raw", keyBytes, {
144399
144399
  name: "Ed25519",
144400
- }, false, ["verify"]);
144400
+ }, true, // Make public keys extractable for re-export in bundles
144401
+ ["verify"]);
144401
144402
  };
144402
144403
  exports.importSignalSigningPublicKey = importSignalSigningPublicKey;
144403
144404
  const performSignalDH = async (privateKey, publicKey) => {