webAPI过滤器返回数据加密

Posted zhuyapeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webAPI过滤器返回数据加密相关的知识,希望对你有一定的参考价值。

项目需求:

  接口返回的数据,存在一些敏感信息,不希望其他用户看到,将Data进行加密传输

代码如下:

    public class EncryptDataFilterAttribute : ActionFilterAttribute
    {
        public override void OnActionExecuted(HttpActionExecutedContext actionExecutedContext)
        {

            base.OnActionExecuted(actionExecutedContext);

            var actionList=actionExecutedContext.ActionContext.ActionDescriptor.GetCustomAttributes<EncryptDataAttribute>();
            var controllList= actionExecutedContext.ActionContext.ControllerContext.ControllerDescriptor.GetCustomAttributes<EncryptDataAttribute>();

            if (actionList.Any()||controllList.Any())
            {
                if (((System.Net.Http.ObjectContent)actionExecutedContext.Response.Content).Value is AjaxResCode)
                {
                    AjaxResCode result = actionExecutedContext.Response.Content.ReadAsAsync<AjaxResCode>().Result;
                    if (result.Data!=null&&!string.IsNullOrWhiteSpace(result.Data.ToString()))
                    {
                        string data= Newtonsoft.Json.JsonConvert.SerializeObject(result.Data);
                        //数据加密过程
                        result.Data = AesEncrypt.Encrypt(data, "123456");
                        string res = Newtonsoft.Json.JsonConvert.SerializeObject(result);

                        HttpResponseMessage response = new HttpResponseMessage { Content = new StringContent(res, Encoding.GetEncoding("UTF-8"), "application/json") };
                        actionExecutedContext.Response = response;
                    }
                }
            }
        }
    }    

 

以上是关于webAPI过滤器返回数据加密的主要内容,如果未能解决你的问题,请参考以下文章

WebApi 如何 优雅的 对 输入输出 解密加密

使用 WebAPI 加密数据时出现 TypeError window.crypto.subtle.encrypt()

Python爬虫进阶 | 某监测平台数据加密逆向分析

asp.net mvc webapi 实用的接口加密方法

Express实战 - 应用案例- realworld-API - 路由设计 - mongoose - 数据验证 - 密码加密 - 登录接口 - 身份认证 - token - 增删改查API(代码片段

干货.NET WebApi HttpMessageHandler管道