Skip to content

Instantly share code, notes, and snippets.

@mfbx9da4
Last active December 30, 2024 12:24
Show Gist options
  • Save mfbx9da4/9fb911e9b24dfba00445ff128b59493f to your computer and use it in GitHub Desktop.
Save mfbx9da4/9fb911e9b24dfba00445ff128b59493f to your computer and use it in GitHub Desktop.
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