Files
doris/docs/en/sql-reference/sql-statements/Data Definition/CREATE ENCRYPTKEY.md
qiye 5de79ec3f0 [Feature] Support data encrypt/decrypt (#6115)
Add support for data encryption/decryption.
2021-07-19 09:27:08 +08:00

2.7 KiB

title, language
title language
CREATE ENCRYPTKEY en

CREATE ENCRYPTKEY

Description

Syntax

CREATE ENCRYPTKEY key_name
    AS "key_string"

Parameters

key_name: The name of the key to be created, which can include the name of the database. For example: db1.my_key.

key_string: The string to create the key

This statement creates a custom key. Executing this command requires the user to have the ADMIN privileges.

If the database name is included in key_name, then this custom key will be created in the corresponding database, otherwise this function will be created in the database where the current session is located. The name of the new key cannot be the same as the key that already exists in the corresponding database, otherwise the creation will fail.

Example

  1. Create a custom key

    CREATE ENCRYPTKEY my_key as "ABCD123456789";
    
  2. Using a custom key

    To use a custom key, add the keyword KEY/key before the key name, separated from key_name by a space.

    mysql> SELECT HEX(AES_ENCRYPT("Doris is Great", KEY my_key));
    +------------------------------------------------+
    | hex(aes_encrypt('Doris is Great', key my_key)) |
    +------------------------------------------------+
    | D26DB38579D6A343350EDDC6F2AD47C6               |
    +------------------------------------------------+
    1 row in set (0.02 sec)
    
    mysql> SELECT AES_DECRYPT(UNHEX('D26DB38579D6A343350EDDC6F2AD47C6'), KEY my_key);
    +--------------------------------------------------------------------+
    | aes_decrypt(unhex('D26DB38579D6A343350EDDC6F2AD47C6'), key my_key) |
    +--------------------------------------------------------------------+
    | Doris is Great                                                     |
    +--------------------------------------------------------------------+
    1 row in set (0.01 sec)
    

Keyword

CREATE,ENCRYPTKEY