From 892e0835c6b2da0836bd6ba1d8603db1848cc2d9 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 25 Sep 2023 19:05:52 +0200 Subject: [PATCH] feat: Increase the key size to 4096 --- src/main/kotlin/app/revanced/library/ApkSigner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/library/ApkSigner.kt b/src/main/kotlin/app/revanced/library/ApkSigner.kt index 419fc0c..89d85c3 100644 --- a/src/main/kotlin/app/revanced/library/ApkSigner.kt +++ b/src/main/kotlin/app/revanced/library/ApkSigner.kt @@ -45,7 +45,7 @@ object ApkSigner { // Generate a new key pair. val keyPair = KeyPairGenerator.getInstance("RSA").apply { - initialize(2048) + initialize(4096) }.generateKeyPair() var serialNumber: BigInteger