summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-03-24 18:59:27 +0100
committerParménides GV <parmegv@sdf.org>2015-03-24 18:59:27 +0100
commit9bb172e96cfd741e528e692118ee32fc609c6da8 (patch)
treed37f29318dfd8705ae81b21013538851490faea3 /app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java
parent26efe3b9b2e1cbfe87f88239e1a3c9264ae1e1db (diff)
Cleaned imports, use wildcards when appropriate
Diffstat (limited to 'app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java')
-rw-r--r--app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java21
1 files changed, 5 insertions, 16 deletions
diff --git a/app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java b/app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java
index a046f01f..33d2971d 100644
--- a/app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java
+++ b/app/src/main/java/se/leap/bitmaskclient/PRNGFixes.java
@@ -12,24 +12,13 @@ package se.leap.bitmaskclient;
* Source: http://android-developers.blogspot.de/2013/08/some-securerandom-thoughts.html
*/
-import android.os.Build;
+import android.os.*;
import android.os.Process;
-import android.util.Log;
-
-import java.io.ByteArrayOutputStream;
-import java.io.DataInputStream;
-import java.io.DataOutputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.IOException;
-import java.io.OutputStream;
-import java.io.UnsupportedEncodingException;
-import java.security.NoSuchAlgorithmException;
+import android.util.*;
+
+import java.io.*;
+import java.security.*;
import java.security.Provider;
-import java.security.SecureRandom;
-import java.security.SecureRandomSpi;
-import java.security.Security;
/**
* Fixes for the output of the default PRNG having low entropy.