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