我有一個使用下面的C#代碼編碼/加密的字符串:解碼/解密串
public static string Encode(string text)
{
if (!Enabled)
return text;
return "~/Enc/" + System.Convert.ToBase64String(
System.Text.ASCIIEncoding.ASCII.GetBytes(text));
}
我怎樣才能解碼/解密它在客戶端側並在編碼/加密之前獲取原始字符串?
我已經嘗試過atob(encodedString)並且它不返回原始值。
謝謝
彌敦道
** [你找到答案下面有用嗎? ](http://stackoverflow.com/a/16553784/2377970)** – 2013-05-15 16:33:35