Storing hashed passwords in MySQL(在 MySQL 中存储散列密码)
问题描述
我正在使用 PHP 中的 salted sha1 创建散列密码.
I'm creating hashed passwords using salted sha1 in PHP.
我的问题是:在 MySQL 中,什么是正确的字符编码、字段类型 &存储结果的长度?
My question is: In MySQL what is the proper character encoding, field type & length to store the result?
MySQL 中是否还有其他需要考虑的密码安全性?最后是 SHA256 或 SHA512 实用的哈希选择吗?
Is there anything else in MySQL to consider for password security? Finally are SHA256 or SHA512 practical hashing choices?
推荐答案
对于 SHA1 哈希,CHAR(40) 将是最佳的字段类型和长度.字符编码无关紧要,所有字符都在 ASCII 范围内.为了保持一致性,我会使用与数据库其余部分相同的字符集.
For a SHA1 hash, CHAR(40) would be the optimal field type and length. Character encoding shouldn't matter much, all the characters are within the ASCII range. I'd go with the same character set as the rest of your database for consistency.
这篇关于在 MySQL 中存储散列密码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 MySQL 中存储散列密码


- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01