Choose random or urandom as the source for SecureRandom in Android

How to choose random or urban as a source of randomness for the SecureRandom class in Android?

+4
source share
1 answer

Do not worry about it.

By default, instances of [ SecureRandom ] will generate the seed by using an internal source of entropy, such as /dev/urandom .

http://developer.android.com/reference/java/security/SecureRandom.html

+1
source

Source: https://habr.com/ru/post/1410906/


All Articles