Skip to content

Commit dc8fbfe

Browse files
committed
1.14.13
1 parent c8be5de commit dc8fbfe

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId = "com.donut.mixmessage"
1515
minSdk = 26
1616
targetSdk = 35
17-
versionCode = 101
18-
versionName = "1.14.12"
17+
versionCode = 102
18+
versionName = "1.14.13"
1919

2020
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2121
vectorDrawables {

app/src/main/java/com/donut/mixmessage/util/encode/RSA.kt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,10 @@ object RSAUtil {
2828

2929

3030
val publicKey by CachedDelegate({ arrayOf(publicKeyStr) }) {
31-
if (publicKeyStr.isEmpty()) {
32-
regenerateKeyPair()
33-
}
3431
publicKeyFromString(publicKeyStr)
3532
}
3633

3734
val privateKey by CachedDelegate({ arrayOf(privateKeyStr) }) {
38-
if (privateKeyStr.isEmpty()) {
39-
regenerateKeyPair()
40-
}
4135
privateKeyFromString(
4236
privateKeyStr
4337
)

0 commit comments

Comments
 (0)