Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
eritpchy committed Nov 17, 2023
1 parent acb41d3 commit 5cd7ed2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 14
targetSdkVersion 33
versionCode 30
versionName "4.99.5"
versionName "4.99.6"
buildConfigField "String", "APP_PRODUCT_NAME", "\"FingerprintPay\""
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ public String getPasswordIV() {
}

public void setPasswordIV(String iv) {
if (TextUtils.isEmpty(iv)) {
mCache.sharedPreferences.edit().remove("password_iv").apply();
return;
}
String enc = AESUtils.encrypt(iv, String.valueOf(mCache.passwordEncKey));
mCache.sharedPreferences.edit().putString("password_iv", enc).apply();
}
Expand Down

0 comments on commit 5cd7ed2

Please sign in to comment.