让我来查询
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
答案 0 :(得分:0)
您需要使用AES_DECRYPT
进行解密:
SELECT description, AES_DECRYPT(description,some_secure_key)
FROM table1 ;