美文网首页
flask生成加密的密码

flask生成加密的密码

作者: 暂时还没有昵称2222 | 来源:发表于2016-06-15 11:25 被阅读706次

    使用的模块Security Helpers

    示例代码如下:

    # -*- coding: utf-8 -*-
    
    from werkzeug.security import generate_password_hash, check_password_hash
    
    pwd = '123456'
    
    pwd_hash1 = generate_password_hash(pwd)
    pwd_hash2 = generate_password_hash(pwd)
    
    print(pwd_hash1)
    print(pwd_hash2)
    
    print(check_password_hash(pwd_hash1, pwd))
    print(check_password_hash(pwd_hash2, pwd))
    

    相关文章

      网友评论

          本文标题:flask生成加密的密码

          本文链接:https://www.haomeiwen.com/subject/uptpdttx.html