Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix CryptoKey is not extractable #169

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

vinhnguyen1211
Copy link

Fix Key Generation Script Error

Description

This PR addresses an issue in the generateKeys.mjs script where the CryptoKey being generated was not extractable, causing the following error when attempting to export to PKCS8 format:

➜ node generateKeys.mjs
TypeError: CryptoKey is not extractable
    at genericExport (node_modules/jose/dist/webapi/lib/asn1.js:20:15)
    at toPKCS8 (node_modules/jose/dist/webapi/lib/asn1.js:31:12)
    at exportPKCS8 (node_modules/jose/dist/webapi/key/export.js:7:12)
    at generateKeys.mjs:4:26

Changes

  • Added { extractable: true } to the generateKeyPair function options to ensure the generated keys can be properly exported
  • This allows the script to successfully generate and export both the private key in PKCS8 format and the public key as JWK

Testing

Tested the script with the fix and verified it now runs without errors and produces the expected JWT_PRIVATE_KEY and JWKS output.


By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

Copy link

vercel bot commented Feb 26, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
convex-auth-docs ✅ Ready (Inspect) Visit Preview Feb 26, 2025 1:18pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant