use random.SystemRandom as random nr source (/dev/urandom)
/dev/urandom is somewhat better than python's PRNG Change-Id: I6de38c14ac6dd55bc84d53974192509c18d02bfa
This commit is contained in:
@@ -94,7 +94,7 @@ class InputExpandingParamSource(ParamSource):
|
|||||||
return cls(cls.expand_str(s))
|
return cls(cls.expand_str(s))
|
||||||
|
|
||||||
class RandomSourceMixin:
|
class RandomSourceMixin:
|
||||||
random_impl = random # TODO secure random source?
|
random_impl = random.SystemRandom()
|
||||||
|
|
||||||
class RandomDigitSource(InputExpandingParamSource, RandomSourceMixin):
|
class RandomDigitSource(InputExpandingParamSource, RandomSourceMixin):
|
||||||
'return a different sequence of random decimal digits each'
|
'return a different sequence of random decimal digits each'
|
||||||
|
|||||||
Reference in New Issue
Block a user