返回介绍

数据加密

发布于 2021-09-25 22:17:12 字数 2926 浏览 838 评论 0 收藏 0

定义

SHOW ENCRYPT RULES [FROM schemaName]

SHOW ENCRYPT TABLE RULE tableName [from schemaName]
  • 支持查询所有的数据加密规则和指定逻辑表名查询

说明

说明
table逻辑表名
logicColumn逻辑列名
cipherColumn密文列名
plainColumn明文列名
encryptorType加密算法类型
encryptorProps加密算法参数

示例

显示加密规则

mysql> show encrypt rules from encrypt_db;
+-----------+-------------+--------------+-------------+---------------+-------------------------+
| table     | logicColumn | cipherColumn | plainColumn | encryptorType | encryptorProps          |
+-----------+-------------+--------------+-------------+---------------+-------------------------+
| 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)

显示加密表规则表名

mysql> show encrypt table rule t_encrypt;
+-----------+-------------+--------------+-------------+---------------+-------------------------+
| table     | logicColumn | cipherColumn | plainColumn | encryptorType | encryptorProps          |
+-----------+-------------+--------------+-------------+---------------+-------------------------+
| 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     | logicColumn | cipherColumn | plainColumn | encryptorType | encryptorProps          |
+-----------+-------------+--------------+-------------+---------------+-------------------------+
| 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)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文