diff --git a/src/utils/rsa.ts b/src/utils/rsa.ts index 820e0a4..b6865b4 100644 --- a/src/utils/rsa.ts +++ b/src/utils/rsa.ts @@ -2,7 +2,7 @@ import { Conf } from '@/config.ts'; import { generateSeededRsa, LRUCache, publicKeyToPem, secp } from '@/deps.ts'; const opts = { - bits: 1024, + bits: 2048, }; const rsaCache = new LRUCache>({ max: 1000 });