如何从AWS实例读取密钥并将其添加到我的MySQL查询中?

时间:2018-10-26 06:50:42

标签: mysql sql

让我来查询

return this.SignOut(
         new  Microsoft.AspNetCore.Authentication.AuthenticationProperties 
         {
              RedirectUri = this.GetReturnUrl() 
         },
         CookieAuthenticationDefaults.AuthenticationScheme,
         WsFederationDefaults.AuthenticationScheme);

我正在aws的密钥管理服务中存储some_secure_key。我想在查询中获取并使用此密钥。

我正在从本地系统运行此查询。

系统细节 mysql_version:-5.7.23 操作系统:-Linux

1 个答案:

答案 0 :(得分:0)

您需要使用AES_DECRYPT进行解密:

SELECT description, AES_DECRYPT(description,some_secure_key) 
FROM table1 ;