嗯,我想哈希密码,我看看ASP.NET Identity在Microsoft.AspNet.Identity.Crypto类中的作用,我来了这个函数(用于比较2密码哈希):
[MethodImpl(MethodImplOptions.NoOptimization)] private static bool ByteArraysEqual(byte[] a,byte[] b) { if (object.ReferenceEquals(a,b)) { return true; } if (((a == null) || (b == null)) || (a.Length != b.Length)) { return false; } bool flag = true; for (int i = 0; i < a.Length; i++) { flag &= a[i] == b[i]; } return flag; }
这是从反射器输出的直接复制…
现在我的问题是,NoOptimization属性是什么好的,为什么它应该在那里(如果我删除会发生什么)?对我来说,它似乎是一个默认的Equals()实现,直到for循环.
我试图看看IL,但对我来说都是废话:/