我们可以在包含用户密码列的 MySQL 表中将 MD5 转换为 SHA256 吗?


使用 SHA2() 将 MD5 密码转换为 SHA256。它计算 SHA-2 哈希函数系列,即 SHA-224、SHA-256、SHA-384 和 SHA-512。

我们先创建一个表 -

mysql> create table DemoTable818(UserPassword text);
Query OK, 0 rows affected (0.51 sec)

使用 insert 命令向表中插入一些记录 -

mysql> insert into DemoTable818 values(MD5('John_123'));
Query OK, 1 row affected (0.11 sec)
mysql> insert into DemoTable818 values(MD5('999Carol@22'));
Query OK, 1 row affected (0.14 sec)

使用 select 语句显示表中的所有记录 -

mysql> select *from DemoTable818;

这将产生以下输出 -

+----------------------------------+
| UserPassword                     |
+----------------------------------+
| 47c7d0987db4e59e2264ce9fefce4977 |
| 950aa70edd5b686a807b3bfffdf2248c |
+----------------------------------+
2 rows in set (0.00 sec)

以下是将 MD5 转换为 SHA256 的查询 -

mysql> update DemoTable818 set UserPassword=SHA2(UserPassword,256);
Query OK, 2 rows affected (0.19 sec)
Rows matched: 2 Changed: 2 Warnings: 0

我们再次检查一下表中的记录 -

mysql> select *from DemoTable818;

这将产生以下输出 -

+------------------------------------------------------------------+
| UserPassword                                                     |
+------------------------------------------------------------------+
| 8b68c46294a9ccb2449324c24fe774f95b7c14e4b56fc51c7f8e6c5b01c7020f |
| 9cc80741546051ae3de7d31246327968c98af3c65125376acb7b49a0760d42a3 |
+------------------------------------------------------------------+
2 rows in set (0.00 sec)

更新于: 03-Sep-2019

1 千余次浏览

开启您的 事业

通过完成课程获得认证

开始学习
广告