summaryrefslogtreecommitdiff
path: root/src/se/leap/bitmaskclient/Dashboard.java
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2013-09-03 18:24:25 +0200
committerParménides GV <parmegv@sdf.org>2013-11-14 20:04:44 +0100
commitdc27e33097870c9af4d39b6b71564603cf24d321 (patch)
tree525015129bbaedf03c9e42bb4654cd2097779b1d /src/se/leap/bitmaskclient/Dashboard.java
parent2cc19682a050e7675de4a8e5f470c7a408b46ac4 (diff)
Fixed SecureRandom PRNG problem.
Solution copied from http://android-developers.blogspot.de/2013/08/some-securerandom-thoughts.html
Diffstat (limited to 'src/se/leap/bitmaskclient/Dashboard.java')
-rw-r--r--src/se/leap/bitmaskclient/Dashboard.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/se/leap/bitmaskclient/Dashboard.java b/src/se/leap/bitmaskclient/Dashboard.java
index 97367e25..b452189a 100644
--- a/src/se/leap/bitmaskclient/Dashboard.java
+++ b/src/se/leap/bitmaskclient/Dashboard.java
@@ -75,7 +75,8 @@ public class Dashboard extends Activity implements LogInDialog.LogInDialogInterf
super.onCreate(savedInstanceState);
app = this;
-
+
+ PRNGFixes.apply();
ConfigHelper.setSharedPreferences(getSharedPreferences(SHARED_PREFERENCES, MODE_PRIVATE));
preferences = ConfigHelper.shared_preferences;