Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit f7a6e8b

Browse files
committed
salt and shared pref file name were the wrong way around.
1 parent a6d76b1 commit f7a6e8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/main/java/com/securepreferences/SecurePreferences.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public SecurePreferences(Context context, final AesCbcWithIntegrity.SecretKeys s
124124
* @param iterationCount The iteration count for the keys generation
125125
*/
126126
public SecurePreferences(Context context, final String password, final String salt, final String sharedPrefFilename, int iterationCount) {
127-
this(context, null, password, sharedPrefFilename, salt, iterationCount);
127+
this(context, null, password, salt, sharedPrefFilename, iterationCount);
128128
}
129129

130130
private SecurePreferences(Context context, final AesCbcWithIntegrity.SecretKeys secretKey, final String password, final String salt, final String sharedPrefFilename, int iterationCount) {

0 commit comments

Comments
 (0)