ตามชื่อเรื่องฉันได้รับ:
ความยาวไม่ถูกต้องสำหรับอาร์เรย์ถ่าน Base-64
ฉันได้อ่านเกี่ยวกับปัญหานี้ที่นี่และดูเหมือนว่าข้อเสนอแนะคือการจัดเก็บ ViewState ใน SQL หากมีขนาดใหญ่ ฉันใช้วิซาร์ดกับการรวบรวมข้อมูลจำนวนมากดังนั้นโอกาสที่ ViewState ของฉันจะมีมาก แต่ก่อนที่ฉันจะหันไปใช้โซลูชัน "store-in-DB" อาจมีใครลองดูและบอกฉันว่าฉันมีทางเลือกอื่นหรือไม่
ฉันสร้างอีเมลสำหรับการจัดส่งโดยใช้วิธีการด้านล่าง:
public void SendEmailAddressVerificationEmail(string userName, string to)
{
string msg = "Please click on the link below or paste it into a browser to verify your email account.<BR><BR>" +
"<a href=\"" + _configuration.RootURL + "Accounts/VerifyEmail.aspx?a=" +
userName.Encrypt("verify") + "\">" +
_configuration.RootURL + "Accounts/VerifyEmail.aspx?a=" +
userName.Encrypt("verify") + "</a>";
SendEmail(to, "", "", "Account created! Email verification required.", msg);
}
วิธีการเข้ารหัสมีลักษณะดังนี้:
public static string Encrypt(string clearText, string Password)
{
byte[] clearBytes = System.Text.Encoding.Unicode.GetBytes(clearText);
PasswordDeriveBytes pdb = new PasswordDeriveBytes(Password, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
byte[] encryptedData = Encrypt(clearBytes, pdb.GetBytes(32), pdb.GetBytes(16));
return Convert.ToBase64String(encryptedData);
}
นี่คือลักษณะของ HTML ใน hotmail:
กรุณาคลิกที่ลิงค์ด้านล่างหรือวางลงในเบราว์เซอร์เพื่อยืนยันบัญชีอีเมลของคุณ
ในปลายทางการรับหน้า VerifyEmail.aspx.cs มีบรรทัด:
string username = Cryptography.Decrypt(_webContext.UserNameToVerify, "verify");
นี่คือ getter สำหรับ UserNameToVerify:
public string UserNameToVerify
{
get
{
return GetQueryStringValue("a").ToString();
}
}
และนี่คือเมธอด GetQueryStringValue:
private static string GetQueryStringValue(string key)
{
return HttpContext.Current.Request.QueryString.Get(key);
}
และวิธีการถอดรหัสมีลักษณะดังนี้:
public static string Decrypt(string cipherText, string password)
{
**// THE ERROR IS THROWN HERE!!**
byte[] cipherBytes = Convert.FromBase64String(cipherText);
ข้อผิดพลาดนี้สามารถแก้ไขได้ด้วยการแก้ไขโค้ดหรือต้องเก็บ ViewState ไว้ในฐานข้อมูลหรือไม่