Update passwordalchemy.py

main
witchdocsec 2024-05-28 01:58:18 +01:00 committed by GitHub
parent b3851a91ee
commit 728ee67f9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class mainfuncs:
@staticmethod
def genkeys(args):
#generate keypair
(pubkey, privkey) = rsa.newkeys(900)
(pubkey, privkey) = rsa.newkeys(2048)
#if a key is already present
if args.oldprivatekey:
with open(args.oldprivatekey,"r") as pemfile: