檔案加密解密 URl引數加密解密

2021-06-02 03:02:12 字數 1184 閱讀 8235

sliverlight 加密解密 

public static class encryption

#endregion

#region silverlight密碼解密

/**/

///

/// 解密資料

///

/// 加密後的字串

/// 加密前的字串

public static string decrypt(string input)

#endregion

(2)///

/// 加密解密輔助類

///

public class encrpthelp

return system.convert.tobase64string(btbuffer);

}private static byte swithbyte(byte bsouce)

if (btemp2 != 0)

bresult = bresult | btemp2;

else

ncount++;

}nstep = 2;

nwhilerange = 4;

}return (byte)bresult;

}private readonly static byte m_arybytetable = ;

private readonly static byte m_arybytetablemark = ;

//        url中的特殊字元

//有些符號在url中是不能直接傳遞的,如果要在url中傳遞這些特殊符號,那麼就要使用他們的編碼了。編碼的格式為:%加字元的ascii碼,即乙個百分號%,後面跟對應字元的ascii(16進製制)碼值。例如 空格的編碼值是"%20"。

//1. +  url 中+號表示空格 %2b

//2. 空格 url中的空格可以用+號或者編碼 %20

//3. /  分隔目錄和子目錄 %2f 

//4. ?  分隔實際的 url 和引數 %3f 

//5. % 指定特殊字元 %25 

//6. # 表示書籤 %23 

//7. & url 中指定的引數間的分隔符 %26 

//8. = url 中指定引數的值 %3d

public static string urlencode(string stext)

URL傳輸引數加密解密

最近做乙個論壇入口時要實現帳號和密碼不在ie位址列出現而做的 index.aspx.cs 加密處理 byte iv64 byte bykey64 public string encrypt string strtext catch exception ex private void btnlogin...

url加密解密

js對文字進行編碼涉及3個函式 escape,encodeuri,encodeuricomponent,相應3個解碼函式 unescape,decodeuri,decodeuricomponent 1 傳遞引數時需要使用encodeuricomponent,這樣組合的url才不會被 等特殊字元截斷。...

加密解密檔案

1 decrypt 方法允許解密使用 encrypt 方法加密的檔案。decrypt 方法只能解密使用當前使用者帳戶加密的檔案。23 decrypt 方法要求獨佔訪問被解密的檔案,如果有其他程序正在使用該檔案,此方法將引發異常。如果檔案沒有加密,則 decrypt 將返回乙個非零值,這表示成功。45...