Discuss / Python / 打卡-第二题

打卡-第二题

Topic source

def login(username, password):

    user = db[username]

    return user.password == get_md5(password + user.salt)


  • 1

Reply