Last active
December 30, 2024 12:24
-
-
Save mfbx9da4/9fb911e9b24dfba00445ff128b59493f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { generateKeyPair } from "jose/key/generate/keypair"; | |
import { exportJWK } from "jose/key/export"; | |
import { JWK } from "jose"; | |
async function generateKey() { | |
const keyId = globalThis?.crypto.randomUUID(); | |
const algorithm = "EdDSA"; // Some example asymmetric algorithms | |
const key = await generateKeyPair(algorithm, { extractable: true }); | |
const exportedPrivate = await exportJWK(key.privateKey); | |
if (!exportedPrivate.kty) throw new Error(`missing kty`); | |
const jwkPrivate: JWK = { | |
...exportedPrivate, | |
kid: keyId, | |
alg: algorithm, | |
}; | |
const exportedPublic = await exportJWK(key.publicKey); | |
if (!exportedPublic.kty) throw new Error(`missing kty`); | |
const jwkPublic: JWK = { | |
...exportedPublic, | |
kid: keyId, | |
alg: algorithm, | |
}; | |
return { | |
jwkPrivateString: JSON.stringify(jwkPrivate), | |
jwkPublicString: JSON.stringify(jwkPublic), | |
}; | |
} | |
const { jwkPrivateString, jwkPublicString } = await generateKey(); | |
console.log(jwkPrivateString); | |
console.log(jwkPublicString); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment