是否有任何人知道是否有可能召集协会。 利用SHA-256或SHA-512加入网络 我并不真的要放弃我自己的书写线,我们的雇主有一条不容许MD5或SHA-1的加密政策。 可从Microsoft中找到所有的人都是。 HashAlgorythm 类型:
但这只包含MD5和SHA1。
感谢
Keeno
是否有任何人知道是否有可能召集协会。 利用SHA-256或SHA-512加入网络 我并不真的要放弃我自己的书写线,我们的雇主有一条不容许MD5或SHA-1的加密政策。 可从Microsoft中找到所有的人都是。 HashAlgorythm 类型:
但这只包含MD5和SHA1。
感谢
Keeno
http://msdn.microsoft.com/library/whae3t94“rel=“nofollow noreferer”>.membership/providers/add
。 组合文件中确定供应商环境的内容。
Looks like it is indeed possible (assuming you are using SqlMembershipProvider). It supports SHA1, MD5, SHA256, SHA384 and SHA512
Sql 委员 提供商使用该代码进行即时洗算法:
// MembershipPasswordFormat.Hashed
HashAlgorithm s = HashAlgorithm.Create( Membership.HashAlgorithmType );
bRet = s.ComputeHash(bAll);
成员:HashAlgorithm 类型(体形)是hAlgorithm 网络成员类别。
For the full list of all possible values see: http://msdn.microsoft.com/en-us/library/wet69s13(v=vs.100).aspx
You can change the hash algorithm with the hashAlgorithmType attribute. Also you can map algorithm names to classes. So if you want algorithm other than MD5 and SHA1 add new mappings.
For more information see:
membership Element (ASP.NET Settings Schema)
Membership.HashAlgorithmType Property
这一答案能够有所帮助。 ASP.NET 会员提供商现在可以使用PBKDF2(比SHA1好,SHA256-SHA512):。