如何在python中使用bcrypt哈希函数对密码运行时进行哈希处理

时间:2019-02-05 11:28:27

标签: bcrypt python-3.7

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <configuration>
        <skip>true</skip>
    </configuration>
</plugin>

当我尝试上面的代码时,出现以下错误。

  import bcrypt
  pas_input=input("Enter password")
  my_hased_password=bcrypt.hashpw(pas_input,bcrypt.gensalt(30))
  print(my_hased_password)

如何解决这个问题。

0 个答案:

没有答案