Searched refs:seedSize (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dosrng.cpp160 void AutoSeededRandomPool::Reseed(bool blocking, unsigned int seedSize) argument
162 SecByteBlock seed(seedSize);
163 OS_GenerateRandomBlock(blocking, seed, seedSize);
164 IncorporateEntropy(seed, seedSize);
H A Dosrng.h88 explicit AutoSeededRandomPool(bool blocking = false, unsigned int seedSize = 32)
89 {Reseed(blocking, seedSize);}
90 void Reseed(bool blocking = false, unsigned int seedSize = 32);
H A Dinteger.cpp3245 KDF2_RNG(const byte *seed, size_t seedSize)
3246 : m_counter(0), m_counterAndSeed(seedSize + 4)
3248 memcpy(m_counterAndSeed + 4, seed, seedSize);

Completed in 194 milliseconds