mysql 中的 AES_ENCRYPT 后无法使用 AES_DECRYPT

Unable to AES_DECRYPT after AES_ENCRYPT in mysql(mysql 中的 AES_ENCRYPT 后无法使用 AES_DECRYPT)
本文介绍了mysql 中的 AES_ENCRYPT 后无法使用 AES_DECRYPT的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了用户表

CREATE  TABLE `user` (
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT ,
`first_name` VARBINARY(100) NULL ,
`address` VARBINARY(200) NOT NULL ,
PRIMARY KEY (`id`))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COLLATE = utf8_general_ci;

我插入了一行:

INSERT into user (first_name, address) VALUES (AES_ENCRYPT('Obama', 'usa2010'),AES_ENCRYPT('Obama', 'usa2010'));

要选择我使用的这一行:

To select this row i used:

SELECT AES_DECRYPT(first_name, 'usa2010'), AES_DECRYPT(address, 'usa2010') from user;

我得到以下结果.我需要做什么才能看到我的数据.我看不到任何数据.

I am getting the following result.What i need to do see my data.No data is visible for me.

推荐答案

根据手册:

AES_ENCRYPT() 加密一个字符串并返回一个二进制字符串.AES_DECRYPT() 解密加密后的字符串并返回原始字符串.

AES_ENCRYPT() encrypts a string and returns a binary string. AES_DECRYPT() decrypts the encrypted string and returns the original string.

  • MySQL 5.1 文档:AES_ENCRYPT()/AES_DECRYPT()
  • 我不知道为什么在你的情况下它仍然返回一个二进制字符串.不管怎样,试试这个:

    I don't know why it is still returning a binary string in your case. Anyway, try this:

    SELECT *, 
           CAST(AES_DECRYPT(first_name, 'usa2010') AS CHAR(50)) first_name_decrypt 
    FROM   user
    

    并使用first_name_decrypt 而不是first_name.

    这篇关于mysql 中的 AES_ENCRYPT 后无法使用 AES_DECRYPT的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)