标签: python-3.x class null passwords getpass
我的目标是在密码中安全地存储密码,然后在验证后将该变量置空。
class credentials(object): def username(self): getpass.getuser(prompt='Enter the username: ') def password(self): getpass.getpass(prompt='Enter the password: ', stream=None)
如何使上述密码功能无效?