C 常用工具類 加密解密類

2021-09-06 17:39:08 字數 2275 閱讀 7906

using system;

using system.configuration;

using system.collections.generic;

using system.text;

using system.web;

using system.web.ui;

using system.web.ui.htmlcontrols;

using system.web.ui.webcontrols;

using system.web.ui.webcontrols.webparts;

using system.web.security;

using system.drawing;

using system.drawing.imaging;

using system.drawing.drawing2d;

using system.io;

using system.security.cryptography;

namespace utils;

#region 返回 html 字串的編碼結果

/// /// 返回 html 字串的編碼結果

///

/// 字串

/// 編碼結果

public static string stringencode(string str)

#endregion

#region 返回 html 字串的解碼結果

/// /// 返回 html 字串的解碼結果

///

/// 字串

/// 解碼結果

public static string stringdecode(string str)

#endregion

#region 返回 url 字串的編碼結果

/// /// 返回 url 字串的編碼結果

///

/// 字串

/// 編碼結果

public static string urlencode(string str)

#endregion

#region 返回 url 字串的解碼結果

/// /// 返回 url 字串的解碼結果

///

/// 字串

/// 解碼結果

public static string urldecode(string str)

#endregion

#region des加密

/// /// des加密

///

/// 待加密字串

/// 加密後的字串

public static string desencrypt(string strsource)

/// /// des加密

///

/// 待加密字串

/// key值

/// 加密後的字串

public static string desencrypt(string strsource, byte key)

#endregion

#region des解密

/// /// des解密

///

/// 待解密的字串

/// 解密後的字串

public static string desdecrypt(string strsource)

/// /// des解密

///

/// 待解密的字串

/// 32位key值

/// 解密後的字串

public static string desdecrypt(string strsource, byte key)

#endregion

#region md5函式

/// /// md5函式,需引用:using system.security.cryptography;

///

/// 原始字串

/// md5結果

public static string md5(string str)

#endregion

#region sha256函式

/// /// sha256函式

///

/// /// 原始字串

/// sha256結果

public static string sha256(string str)

#endregion

}}

C 常用工具類

string類用法 實為 system.string string class 差 傳遞的引數,返回值?具體例項?是否以x結尾。a.endswith x 判斷a,b是否相同 a.equals b 格式化 a string.format fmt,args 判斷子串是否存在 index a.indexo...

常用工具類

本講內容 常用工具類 陸續更新 author administrator public static context context public void oncreate public static context getcontext 2 提供所有activity呼叫 基類 author ad...

常用工具類

reflectionutils objectutils public static void main string args 判斷兩個陣列是否相等 system.out.println arrays.equals arr,arr true 列印陣列 string s1 arrays.tostrin...