Uses of Interface
org.bouncycastle.crypto.prng.EntropySource
-
Packages that use EntropySource Package Description org.bouncycastle.crypto.prng org.bouncycastle.crypto.prng.drbg org.bouncycastle.util.test -
-
Uses of EntropySource in org.bouncycastle.crypto.prng
Methods in org.bouncycastle.crypto.prng 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().EntropySource
EntropySourceProvider. get(int bitsRequired)
Methods in org.bouncycastle.crypto.prng 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.Constructors in org.bouncycastle.crypto.prng with parameters of type EntropySource Constructor Description X931RNG(BlockCipher engine, byte[] dateTimeVector, EntropySource entropySource)
-
Uses of EntropySource in org.bouncycastle.crypto.prng.drbg
Constructors in org.bouncycastle.crypto.prng.drbg with parameters of type EntropySource Constructor Description CTRSP800DRBG(BlockCipher engine, int keySizeInBits, int securityStrength, EntropySource entropySource, byte[] personalizationString, byte[] nonce)
Construct a SP800-90A CTR DRBG.DualECSP800DRBG(Digest digest, int securityStrength, EntropySource entropySource, byte[] personalizationString, byte[] nonce)
Construct a SP800-90A Dual EC DRBG.DualECSP800DRBG(DualECPoints[] pointSet, Digest digest, int securityStrength, EntropySource entropySource, byte[] personalizationString, byte[] nonce)
Construct a SP800-90A Dual EC DRBG.HashSP800DRBG(Digest digest, int securityStrength, EntropySource entropySource, byte[] personalizationString, byte[] nonce)
Construct a SP800-90A Hash DRBG.HMacSP800DRBG(Mac hMac, int securityStrength, EntropySource entropySource, byte[] personalizationString, byte[] nonce)
Construct a SP800-90A Hash DRBG. -
Uses of EntropySource in org.bouncycastle.util.test
Methods in org.bouncycastle.util.test that return EntropySource Modifier and Type Method Description EntropySource
TestRandomEntropySourceProvider. get(int bitsRequired)
Return an entropy source that will create bitsRequired bits of entropy on each invocation of getEntropy().
-