Statistics
| Branch: | Tag: | Revision:

notecipher / src / info / guardianproject / notepadbot / NoteCipherApp.java @ ae993855

History | View | Annotate | Download (272 Bytes)

1

    
2
package info.guardianproject.notepadbot;
3

    
4
import android.app.Application;
5

    
6
public class NoteCipherApp extends Application {
7
    @Override
8
    public void onCreate() {
9
        // Apply the Google PRNG fixes to properly seed SecureRandom
10
        PRNGFixes.apply();
11
    }
12
}