Uses of Interface
org.bouncycastle.crypto.EntropySource
-
Packages that use EntropySource Package Description org.bouncycastle.crypto Lower level cryptography API that supports the JCA/JCE provider as well as allowing access to more primitive functionality.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 EntropySource in org.bouncycastle.crypto
Methods in org.bouncycastle.crypto that return EntropySource Modifier and Type Method Description EntropySource
EntropySourceProvider. get(int bitsRequired)
Return an entropy source providing block of entropy. -
Uses of EntropySource in org.bouncycastle.crypto.util
Methods in org.bouncycastle.crypto.util that return EntropySource Modifier and Type Method Description EntropySource
BasicEntropySourceProvider. get(int bitsRequired)
Return an entropy source that will create bitsRequired bits of entropy on each invocation of getEntropy().Methods in org.bouncycastle.crypto.util with parameters of type EntropySource Modifier and Type Method Description static byte[]
EntropyUtil. generateSeed(EntropySource entropySource, int numBytes)
Generate numBytes worth of entropy from the passed in entropy source. -
Uses of EntropySource in org.bouncycastle.util.test
Methods in org.bouncycastle.util.test that return EntropySource Modifier and Type Method Description EntropySource
FixedEntropySourceProvider. get(int bitsRequired)
Return an EntropySource based on the data provided to this object.EntropySource
TestRandomEntropySourceProvider. get(int bitsRequired)
Return an entropy source that will create bitsRequired bits of entropy on each invocation of getEntropy().
-