Package com.dropbox.core.android
Class FixedSecureRandom.LinuxPrngSecureRandomSpi
- java.lang.Object
-
- java.security.SecureRandomSpi
-
- com.dropbox.core.android.FixedSecureRandom.LinuxPrngSecureRandomSpi
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- FixedSecureRandom
public static class FixedSecureRandom.LinuxPrngSecureRandomSpi extends java.security.SecureRandomSpiSecureRandomSpiwhich passes all requests to the Linux PRNG (/dev/urandom).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LinuxPrngSecureRandomSpi()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected byte[]engineGenerateSeed(int size)protected voidengineNextBytes(byte[] bytes)protected voidengineSetSeed(byte[] bytes)
-
-
-
Method Detail
-
engineSetSeed
protected void engineSetSeed(byte[] bytes)
- Specified by:
engineSetSeedin classjava.security.SecureRandomSpi
-
engineNextBytes
protected void engineNextBytes(byte[] bytes)
- Specified by:
engineNextBytesin classjava.security.SecureRandomSpi
-
engineGenerateSeed
protected byte[] engineGenerateSeed(int size)
- Specified by:
engineGenerateSeedin classjava.security.SecureRandomSpi
-
-