eudoxia0 / cl-pass

Password hashing and verification library
30 stars 5 forks source link

Always starting with same salt value. #2

Closed wnortje closed 8 years ago

wnortje commented 8 years ago

The random state is not initialized causing the salt value to be the same after every restart. This ccl -e ' (ql:quickload :cl-pass)' -e '(print (cl-pass:hash "123"))' -e '(quit)' should give a different hash every time. Currently it gives the same.