我已經編碼md5技術來存儲密碼在哈希,但我想用鹽來實現它。 這裏是我的註冊表格php與md5功能,這是完美的工作。 <?php
require("common.php");
if (! empty ($_POST)) {
if (empty ($_POST ['username'])) {
die ("Please enter a username.");
}
我正在嘗試使用MVC模式註冊新用戶並將數據保存到實體框架中;事情是,我想如下(代碼寫在模型) [Required(ErrorMessage = "Enter Password!")]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[Da
當我嘗試在我的主類中運行此代碼時,我的IDE彈出並說,我沒有處理我在我的方法開始時拋出的異常。 public byte[] generateSalt() throws NoSuchAlgorithmException{
// VERY important to use SecureRandom instead of just Random
SecureRandom ran