本文是从ASP.NE T 1.1升级到ASP.NET 2.0需要考虑的Cookie问题的补充,通过示例代码说明如何通过反射在ASP.NET 1.1与ASP.NET 2.0中获取随机生成的cookie加密与验证密钥。 Type machineKeyType = machineKeyConfig.GetType().Assembly.GetType(“System.Web.Configuration.MachineKey”); BindingFlags bf = BindingFlags.NonPublic | BindingFlags.Static; MethodInfo byteArrayToHexString = machineKeyType.GetMethod(“ByteArrayToHexString”, bf); Byte[] validationKey = (Byte[])machineKeyType.GetField(“s_validationKey”,bf).GetValue(machineKeyConfig); PropertyInfo propertyInfo = type.GetProperty(“ValidationKeyInternal”, BindingFlags.NonPublic | BindingFlags.Instance); propertyInfo = type.GetProperty(“DecryptionKeyInternal”, BindingFlags.NonPublic | BindingFlags.Instance); MethodInfo byteArrayToHexString = type.GetMethod(“ByteArrayToHexString”, BindingFlags.Static | BindingFlags.NonPublic); //作者Blog: http://dudu.cnblogs.com
ASP.NET 1.1示例代码:
object machineKeyConfig = HttpContext.Current.GetConfig(“system.web/machineKey”);
//得到System.Web.Configuration.MachineKey+MachineKeyConfig的实例,MachineKeyConfig是MachineKey的嵌套类
//得到System.Web.Configuration.MachineKey类型
//设置绑定标志
//通过反射获取MachineKey中的ByteArrayToHexString方法,该方法用于将字节数组转换为16进制表示的字符串
//获取验证密钥字节数组
SymmetricAlgorithm algorithm = (SymmetricAlgorithm)machineKeyType.GetField(“s_oDes”,bf).GetValue(machineKeyConfig);
Byte[] decryptionKey = algorithm.Key;
//获取加密密钥字节数组
string ValidationKey = (string)byteArrayToHexString.Invoke(null,new object[]{validationKey,validationKey.Length});
//将验证密钥字节数组转换为16进制表示的字符串
string DecryptionKey = (string)byteArrayToHexString.Invoke(null,new object[]{decryptionKey,decryptionKey.Length});
//将加密密钥字节数组转换为16进制表示的字符串
ASP.NET 2.0示例代码:
System.Web.Configuration.MachineKeySection machineKeySection = new System.Web.Configuration.MachineKeySection();
//直接创建MachineKeySection的实例,ASP.NET 2.0中用machineKeySection取代ASP.NET 1.1中的MachineKey,并且可以直接访问,没有被internal保护。
Type type = typeof(System.Web.Configuration.MachineKeySection);//或者machineKeySection.GetType();
Byte[] validationKeyArray = (Byte[])propertyInfo.GetValue(machineKeySection, null);
//获取随机生成的验证密钥字节数组
Byte[] decryptionKeyArray = (Byte[])propertyInfo.GetValue(machineKeySection, null);
//获取随机生成的加密密钥字节数组
//通过反射获取MachineKeySection中的ByteArrayToHexString方法,该方法用于将字节数组转换为16进制表示的字符串
string validationKey = (string)byteArrayToHexString.Invoke(null, new object[] { validationKeyArray, validationKeyArray.Length });
//将验证密钥字节数组转换为16进制表示的字符串
string DecryptionKey = (string)byteArrayToHexString.Invoke(null, new object[] { decryptionKeyArray, decryptionKeyArray.Length });
//将加密密钥字节数组转换为16进制表示的字符串
如何在asp.net中获取随机生成的cookie加密与验证密钥_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 如何在asp.net中获取随机生成的cookie加密与验证密钥_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧