我想在輸入數據庫之前將密碼的字符串轉換爲基本64,所以它會更安全。我可以做到嗎? 這裏從C#的.NET的例子:從字符串轉換爲基本64字符串JSP
字節[] enByte = ASCIIEncoding.ASCII.GetBytes(thepassword);
string lsPwd = Convert.ToBase64String(enByte);
我想在輸入數據庫之前將密碼的字符串轉換爲基本64,所以它會更安全。我可以做到嗎? 這裏從C#的.NET的例子:從字符串轉換爲基本64字符串JSP
字節[] enByte = ASCIIEncoding.ASCII.GetBytes(thepassword);
string lsPwd = Convert.ToBase64String(enByte);
我試過,它的工作,對不起我的帖子:)
DatatypeConverter DC = null來打擾你;
byte [] decodedBytes = vpass.getBytes();
String pass = dc.printBase64Binary(decodedBytes);
將其轉換爲Base64甚至不是安全的。使用散列法,最好使用random salt。
它**絕對**不會更安全。原始密碼仍可恢復。 – BalusC 2012-03-12 13:20:12