a tool for shared writing and social publishing
at c666be3a5500aee0bcd61a53332c7608dbc209ad 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})();