title | summary | aliases | ||
---|---|---|---|---|
Encryption and Compression Functions |
Learn about the encryption and compression functions. |
|
TiDB supports most of the encryption and compression functions available in MySQL 8.0.
Name | Description |
---|---|
AES_DECRYPT() |
Decrypt using AES |
AES_ENCRYPT() |
Encrypt using AES |
COMPRESS() |
Compress and return result as a binary string |
MD5() |
Calculate MD5 checksum |
PASSWORD() |
Calculate and return a password string |
RANDOM_BYTES() |
Return a random byte vector |
SHA() |
Calculate an SHA-1 160-bit checksum |
SHA1() |
Calculate an SHA-1 160-bit checksum |
SHA2() |
Calculate an SHA-2 checksum |
SM3() |
Calculate an SM3 checksum |
UNCOMPRESS() |
Uncompress a compressed string |
UNCOMPRESSED_LENGTH() |
Return the length of a string before compression |
VALIDATE_PASSWORD_STRENGTH() |
Validate the password strength |
The AES_DECRYPT(data, key [,iv])
function decrypts data
that was previously encrypted using the AES_ENCRYPT()
function with the same key
.
You can use the block_encryption_mode
system variable to select the Advanced Encryption Standard (AES) encryption mode.
For encryption modes that require an initialization vector, set it with the iv
argument. The default value is NULL
.
SELECT AES_DECRYPT(0x28409970815CD536428876175F1A4923, 'secret');
+----------------------------------------------------------------------------------------------------------------------+
| AES_DECRYPT(0x28409970815CD536428876175F1A4923, 'secret') |
+----------------------------------------------------------------------------------------------------------------------+
| 0x616263 |
+----------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
The AES_ENCRYPT(data, key [,iv])
function encrypts data
with key
using the Advanced Encryption Standard (AES) algorithm.
You can use the block_encryption_mode
system variable to select the AES encryption mode.
For encryption modes that require an initialization vector, set it with the iv
argument. The default value is NULL
.
SELECT AES_ENCRYPT(0x616263,'secret');
+----------------------------------------------------------------+
| AES_ENCRYPT(0x616263,'secret') |
+----------------------------------------------------------------+
| 0x28409970815CD536428876175F1A4923 |
+----------------------------------------------------------------+
1 row in set (0.00 sec)
The COMPRESS(expr)
function returns a compressed version of the input data expr
.
- If the argument is
NULL
, the function returnsNULL
. - If the argument is an empty string, the function returns a zero-length value.
For non-zero length argument, the function returns a binary string with the following structure:
- Bytes 0 to 3: the uncompressed length
- Bytes 4 to the end: the zlib compressed data
SELECT COMPRESS(0x414243);
+------------------------------------------+
| COMPRESS(0x414243) |
+------------------------------------------+
| 0x03000000789C72747206040000FFFF018D00C7 |
+------------------------------------------+
1 row in set (0.00 sec)
In this output, 0x03000000
represents the uncompressed length (3) and 0x789C72747206040000FFFF018D00C7
is the zlib compressed data.
An example of using Python to decode this outside of TiDB:
import codecs
import zlib
data = codecs.decode('03000000789C72747206040000FFFF018D00C7','hex')
print(int.from_bytes(data[:4], byteorder='little')) # 3
print(zlib.decompress(data[4:])) # b'ABC'
For short strings, COMPRESS()
might return more bytes than the input. The following example shows that a string of 100 a
characters compresses to 19 bytes.
WITH x AS (SELECT REPEAT('a',100) 'a')
SELECT LENGTH(a),LENGTH(COMPRESS(a)) FROM x;
+-----------+---------------------+
| LENGTH(a) | LENGTH(COMPRESS(a)) |
+-----------+---------------------+
| 100 | 19 |
+-----------+---------------------+
1 row in set (0.00 sec)
The MD5(expr)
function calculates a 128-bit MD5 hash for the given argument expr
.
SELECT MD5('abc');
+----------------------------------+
| MD5('abc') |
+----------------------------------+
| 900150983cd24fb0d6963f7d28e17f72 |
+----------------------------------+
1 row in set (0.00 sec)
Warning:
This function is deprecated in MySQL 5.7 and removed in MySQL 8.0. It is deprecated in TiDB. It is not recommended to use this function.
The PASSWORD(str)
function calculates a password hash that can be used with the mysql_native_password
authentication method.
SELECT PASSWORD('secret');
+-------------------------------------------+
| PASSWORD('secret') |
+-------------------------------------------+
| *14E65567ABDB5135D0CFD9A70B3032C179A49EE7 |
+-------------------------------------------+
1 row in set, 1 warning (0.00 sec)
Warning (Code 1681): PASSWORD is deprecated and will be removed in a future release.
The RANDOM_BYTES(n)
function returns n
random bytes.
SELECT RANDOM_BYTES(3);
+----------------------------------+
| RANDOM_BYTES(3) |
+----------------------------------+
| 0x1DBC0D |
+----------------------------------+
1 row in set (0.00 sec)
The SHA()
function is an alias for SHA1
.
The SHA1(expr)
function calculates a 160-bit SHA-1 hash for the given argument expr
.
SELECT SHA1('abc');
+------------------------------------------+
| SHA1('abc') |
+------------------------------------------+
| a9993e364706816aba3e25717850c26c9cd0d89d |
+------------------------------------------+
1 row in set (0.00 sec)
The SHA2(str, n)
function calculates a hash using an algorithm from the SHA-2 family. The n
argument is used to select the algorithm. SHA2()
returns NULL
if any of the arguments are NULL
or if the algorithm selected by n
is unknown or unsupported.
The following lists supported algorithms:
n | Algorithm |
---|---|
0 | SHA-256 |
224 | SHA-224 |
256 | SHA-256 |
384 | SHA-384 |
512 | SHA-512 |
SELECT SHA2('abc',224);
+----------------------------------------------------------+
| SHA2('abc',224) |
+----------------------------------------------------------+
| 23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7 |
+----------------------------------------------------------+
1 row in set (0.00 sec)
Note:
The
SM3()
function is a TiDB extension and is not implemented in MySQL.
The SM3(str)
function calculates a 256-bit ShangMi 3 (SM3) hash for the given argument str
.
SELECT SM3('abc');
+------------------------------------------------------------------+
| SM3('abc') |
+------------------------------------------------------------------+
| 66c7f0f462eeedd9d1f2d46bdc10e4e24167c4875cf2f7a2297da02b8f4ba8e0 |
+------------------------------------------------------------------+
1 row in set (0.00 sec)
The UNCOMPRESS(data)
function decompresses the data that was compressed with the COMPRESS()
function.
SELECT UNCOMPRESS(0x03000000789C72747206040000FFFF018D00C7);
+------------------------------------------------------------------------------------------------------------+
| UNCOMPRESS(0x03000000789C72747206040000FFFF018D00C7) |
+------------------------------------------------------------------------------------------------------------+
| 0x414243 |
+------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
The UNCOMPRESSED_LENGTH(data)
function returns the first 4 bytes of the compressed data, which store the length that the compressed string had before being compressed with the COMPRESS()
function.
SELECT UNCOMPRESSED_LENGTH(0x03000000789C72747206040000FFFF018D00C7);
+---------------------------------------------------------------+
| UNCOMPRESSED_LENGTH(0x03000000789C72747206040000FFFF018D00C7) |
+---------------------------------------------------------------+
| 3 |
+---------------------------------------------------------------+
1 row in set (0.00 sec)
The VALIDATE_PASSWORD_STRENGTH(str)
function is used as part of password management. It calculates the strength of a password and returns a value between 0 and 100.
The VALIDATE_PASSWORD_STRENGTH(str)
function is used as part of password management. It calculates the strength of a password and returns a value between 0 and 100.
The validate_password.*
system variables affect the behavior of the VALIDATE_PASSWORD_STRENGTH()
function.
Examples:
-
To enable the password complexity check, set the
validate_password.enable
system variable toON
:SET GLOBAL validate_password.enable=ON;
-
View password validation-related system variables:
SHOW VARIABLES LIKE 'validate_password.%';
+--------------------------------------+--------+ | Variable_name | Value | +--------------------------------------+--------+ | validate_password.check_user_name | ON | | validate_password.dictionary | | | validate_password.enable | ON | | validate_password.length | 8 | | validate_password.mixed_case_count | 1 | | validate_password.number_count | 1 | | validate_password.policy | MEDIUM | | validate_password.special_char_count | 1 | +--------------------------------------+--------+ 8 rows in set (0.01 sec)
-
Check the password strength of an empty string, which returns
0
:SELECT VALIDATE_PASSWORD_STRENGTH('');
+--------------------------------+ | VALIDATE_PASSWORD_STRENGTH('') | +--------------------------------+ | 0 | +--------------------------------+ 1 row in set (0.00 sec)
-
Check the password strength of a short string
abcdef
, which returns25
:SELECT VALIDATE_PASSWORD_STRENGTH('abcdef');
+--------------------------------------+ | VALIDATE_PASSWORD_STRENGTH('abcdef') | +--------------------------------------+ | 25 | +--------------------------------------+ 1 row in set (0.00 sec)
-
Check the password strength of a longer string
abcdefghi
, which returns50
. This string is longer than the default value ofvalidate_password.length
:SELECT VALIDATE_PASSWORD_STRENGTH('abcdefghi');
+-----------------------------------------+ | VALIDATE_PASSWORD_STRENGTH('abcdefghi') | +-----------------------------------------+ | 50 | +-----------------------------------------+ 1 row in set (0.00 sec)
-
Adding an upper-case character to the string does not improve the password strength:
SELECT VALIDATE_PASSWORD_STRENGTH('Abcdefghi');
+-----------------------------------------+ | VALIDATE_PASSWORD_STRENGTH('Abcdefghi') | +-----------------------------------------+ | 50 | +-----------------------------------------+ 1 row in set (0.01 sec)
-
Adding numbers to the string also does not improve the password strength:
SELECT VALIDATE_PASSWORD_STRENGTH('Abcdefghi123');
+--------------------------------------------+ | VALIDATE_PASSWORD_STRENGTH('Abcdefghi123') | +--------------------------------------------+ | 50 | +--------------------------------------------+ 1 row in set (0.00 sec)
-
Finally, adding special characters to the string brings the password strength to
100
, indicating a strong password:SELECT VALIDATE_PASSWORD_STRENGTH('Abcdefghi123%$#');
+-----------------------------------------------+ | VALIDATE_PASSWORD_STRENGTH('Abcdefghi123%$#') | +-----------------------------------------------+ | 100 | +-----------------------------------------------+ 1 row in set (0.00 sec)
- TiDB does not support the functions only available in MySQL Enterprise Issue #2632.
- TiDB does not support the
STATEMENT_DIGEST()
andSTATEMENT_DIGEST_TEXT()
functions. - TiDB does not support the
kdf_name
,salt
, anditerations
arguments forAES_ENCRYPT()
andAES_DECRYPT
that MySQL added in MySQL 8.0.30. - MySQL does not implement the
SM3()
function.