a tool for shared writing and social publishing
at 8d7d293cd2bf55d39cbe3ad11c85cd4eaa4265f7 5 lines 151 B view raw
1import { JoseKey } from "@atproto/jwk-jose"; 2(async () => { 3 let key = await JoseKey.generate(); 4 console.log(JSON.stringify(key.privateJwk)); 5})();