SM3 is password hash algorithm SM4 is a block cipher used to replace DES / AES and other international algorithms.
1.4 KiB
1.4 KiB
title, language
| title | language |
|---|---|
| MD5SUM | zh-CN |
MD5SUM
description
计算 多个字符串 MD5 128-bit
Syntax
MD5SUM(str[,str])
example
MySQL > select md5("abcd");
+----------------------------------+
| md5('abcd') |
+----------------------------------+
| e2fc714c4727ee9395f324cd2e7f331f |
+----------------------------------+
1 row in set (0.011 sec)
MySQL > select md5sum("ab","cd");
+----------------------------------+
| md5sum('ab', 'cd') |
+----------------------------------+
| e2fc714c4727ee9395f324cd2e7f331f |
+----------------------------------+
1 row in set (0.008 sec)
keyword
MD5SUM