#!/usr/bin/python import bcrypt cost = 6 password = b'password' salt = bcrypt.hashpw(password,bcrypt.gensalt(cost))
確定! 回上一頁