Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果构建一个用于发送一系列电子邮件的应用程序,该应用程序必须临时存储用户的密码,那么这样做最安全的做法是什么(如果有的话)?如果没有,你会推荐什么?
只要您不通过 Internet 发送密码,它就应该没什么大不了的。如果您确实想要更安全,您可以将密码存储在一个字符串中,然后在不再需要它之后,用一个相同长度的字符串覆盖它。
您可以使用设备中的共享首选项将密码存储和检索为字符串。完成后,可以从首选项中删除此字符串。