に塩とsha512whirlpoolとパスワードを検証 select * from password_table
where user_id = 1
and password = shal(`salt` + 'password')
order by id desc
limit 1
なかったです何かを返す。このアルゴリズムはsha512のワールプールです。 PHPで それはこのように書き
: # import the hash algorithm
from passlib.hash import sha256_crypt
# generate new salt, and hash a password
hash = sha256_crypt.encrypt("toomanysecrets")
print hash # <=