C 中加密解密方法

2021-06-11 18:58:37 字數 470 閱讀 6298

下面是寫好的方法,使用時直接呼叫即可

using system;

using system.io;

using system.security.cryptography;

namespace csharplibrary.staticservice

//加密

//引數:strdata:要加密的資料 strkey:金鑰

//返回:加好密的字串

public static string encrypt(string strdata, string strkey)

catch

}//解密

//引數:strdata:要解密的資料 strkey:金鑰

//返回:解好密的字串

public static string decrypt(string strdata, string strkey)

catch}}

}

C 中加密與解密

早上起來,頭一陣疼痛,昨天睡了一天,今天再也不能這樣睡下去了,於是洗漱完後往公司趕去,到公司後冷冷靜靜的只有我乙個人,哎,又多愁善感了,閒話不多說,今天要分享的是c 中加密與解密的運算,如下 建立key public static string generatekey md5加密 需要加密的字串 加...

C 加密解密方法

1 方法一 不可逆加密 public string encryptpassword string passwordstring,string passwordformat elseif passwordformat md5 return encryptpassword 2 方法二 可逆加密 publ...

C 加密解密方法匯集

1 方法一 不可逆加密 2 方法二 可逆加密 3 方法三 可逆加密 public string encode string data public string decode string data catch descryptoserviceprovider cryptoprovider new ...