SHOW ENCRYPT RULES [FROM schemaName]
SHOW ENCRYPT TABLE RULE tableName [from schemaName]
Column | Description |
---|---|
table | Logical table name |
logic_column | Logical column name |
cipher_column | Ciphertext column name |
plain_column | Plaintext column name |
encryptor_type | Encryption algorithm type |
encryptor_props | Encryption algorithm parameter |
Show Encrypt Rules
mysql> show encrypt rules from encrypt_db;
+-----------+--------------+---------------+--------------+----------------+-------------------------+
| table | logic_column | cipher_column | plain_column | encryptor_type | encryptor_props |
+-----------+--------------+---------------+--------------+----------------+-------------------------+
| t_encrypt | order_id | order_cipher | NULL | MD5 | |
| t_encrypt | user_id | user_cipher | user_plain | AES | aes-key-value=123456abc |
| t_order | item_id | order_cipher | NULL | MD5 | |
| t_order | order_id | user_cipher | user_plain | AES | aes-key-value=123456abc |
+-----------+--------------+---------------+--------------+----------------+-------------------------+
4 rows in set (0.01 sec)
Show Encrypt Table Rule Table Name
mysql> show encrypt table rule t_encrypt;
+-----------+--------------+---------------+--------------+----------------+-------------------------+
| table | logic_column | cipher_column | plain_column | encryptor_type | encryptor_props |
+-----------+--------------+---------------+--------------+----------------+-------------------------+
| t_encrypt | order_id | order_cipher | NULL | MD5 | |
| t_encrypt | user_id | user_cipher | user_plain | AES | aes-key-value=123456abc |
+-----------+--------------+---------------+--------------+----------------+-------------------------+
2 rows in set (0.00 sec)
mysql> show encrypt table rule t_encrypt from encrypt_db;
+-----------+--------------+---------------+--------------+----------------+-------------------------+
| table | logic_column | cipher_column | plain_column | encryptor_type | encryptor_props |
+-----------+--------------+---------------+--------------+----------------+-------------------------+
| t_encrypt | order_id | order_cipher | NULL | MD5 | |
| t_encrypt | user_id | user_cipher | user_plain | AES | aes-key-value=123456abc |
+-----------+--------------+---------------+--------------+----------------+-------------------------+
2 rows in set (0.00 sec)