在哪里存储用户的信息Visual Basic 中的信息(个人详细信息、用户名和密码)?
我是视觉基础的新手。我正在做一个登录系统。 我已经完成了 GUI 操作。 但对于编程部分,我想知道在哪里存储新用户的信息以及用户名和密码。 我做过研究。好像和数据库有关系。
p/s:我正在寻找存储数据的高安全性以防止黑客攻击。
I'm a newbie in visual basic. I'm doing a login system.
I'm done with the GUI.
but for the programming part, I want to know where to store new user's information along with the username and password.
I've done research. seems like it has something to do with database.
p/s: I'm looking for high security in storing data to prevent hacking.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您自己发现的那样,登录信息通常存储在数据库中。为了使其更加安全,可以使用加密算法来存储此类信息。您可以使用 MD5,但它很容易逆转。我建议使用 BCrypt。
Like you've found out yourself, the login information is usually stored in a database. To make it more secure, use encryption algorithm for storing this kind of information. You could use MD5, but it's quite easily reversed. I would recommend using BCrypt.