Uses of Interface
org.bouncycastle.crypto.EntropySourceProvider
-
Packages that use EntropySourceProvider Package Description org.bouncycastle.crypto.fips Classes for FIPS approved mode algorithmsorg.bouncycastle.crypto.general Classes for general encryption algorithms and non-FIPS approved variants.org.bouncycastle.crypto.util Utility classes for supporting the crypto APIs - entropy provision and SP 800-56A OtherInfo and MacData.org.bouncycastle.util.test Classes for providing "fixed entropy" and "fixed randomness" for testing purposes. -
-
Uses of EntropySourceProvider in org.bouncycastle.crypto.fips
Methods in org.bouncycastle.crypto.fips with parameters of type EntropySourceProvider Modifier and Type Method Description FipsDRBG.Builder
FipsDRBG.Base. fromEntropySource(EntropySourceProvider entropySourceProvider)
Create a builder which makes creates the SecureRandom objects from a specified entropy source provider. -
Uses of EntropySourceProvider in org.bouncycastle.crypto.general
Methods in org.bouncycastle.crypto.general with parameters of type EntropySourceProvider Modifier and Type Method Description X931PRNG.Builder
X931PRNG.Base. fromEntropySource(EntropySourceProvider entropySourceProvider)
Return a builder which makes creates the SecureRandom objects from a specified entropy source provider. -
Uses of EntropySourceProvider in org.bouncycastle.crypto.util
Classes in org.bouncycastle.crypto.util that implement EntropySourceProvider Modifier and Type Class Description class
BasicEntropySourceProvider
An EntropySourceProvider where entropy generation is based on a SecureRandom output using SecureRandom.generateSeed() in the case of a JDK SecureRandom or SecureRandom.nextBytes() in the case of a FipsSecureRandom, or a GeneralSecureRandom. -
Uses of EntropySourceProvider in org.bouncycastle.util.test
Classes in org.bouncycastle.util.test that implement EntropySourceProvider Modifier and Type Class Description class
FixedEntropySourceProvider
An "entropy" provider which returns pre-defined data on request.class
TestRandomEntropySourceProvider
A class for returning "quick entropy" for testing purposes.
-