marcwebbie / passpie

:closed_lock_with_key: Multiplatform command-line password manager
http://passpie.readthedocs.org/
MIT License
921 stars 68 forks source link

Switched to more secure use of entropy #57

Closed ddworken closed 9 years ago

ddworken commented 9 years ago

Switched from random to SystemRandom. SystemRandom is a drop in replacement for random that uses os.random as a back end instead of python's pseudo random number generator. This increases the security of the randomly generated passwords since they no longer rely on the pseudo random number generator

landscape-bot commented 9 years ago

Code Health Code quality remained the same when pulling e0a1f14 on ddworken:master into 4760f99 on marcwebbie:master.

marcwebbie commented 9 years ago

Thanks, :)