File tree Expand file tree Collapse file tree
src/main/java/com/donut/mixmessage/util/encode Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments