2012-11-23 40 views
0

可能重複:
What is the optimal length for user password salt?我應該在CreateSalt類中使用多大的尺寸?

我應該在CreateSalt類使用什麼尺寸?

private static string CreateSalt(int size) 
+0

它看起來像一個方法,而不是一個類。 –

+2

可能duplciate:http://stackoverflow.com/questions/184112/what-is-the-optimal-length-for-user-password-salt – Andy

+0

堆棧溢出[使用16字節鹽](http://代碼。 google.com/p/stackid/source/browse/OpenIdProvider/Current.cs#384) –

回答

1

說完剛做完本週同樣的事情,我決定一個字節[8]在.NET 4由RNGCryptoServiceProvider類生成

鹽似乎是一個體面的大小,以避免碰撞與其他鹽。

Si

+0

非常感謝! –