C 控制台 建立檔案 刪除檔案 賬號密碼的加密文件

2022-09-01 16:15:16 字數 1396 閱讀 7493

---恢復內容開始---

static void main(string args)

else}}

console.readkey();

}static string md5encrypt(string strsource) ;//定義偏移量 

byte key = ;//定義金鑰 

//例項des加密類 

descryptoserviceprovider mobjcryptoservice = new descryptoserviceprovider();

mobjcryptoservice.key = iv;

mobjcryptoservice.iv = key;

icryptotransform encrypto = mobjcryptoservice.createencryptor();

//例項memorystream流加密密檔案 

system.io.memorystream ms = new system.io.memorystream();

cryptostream cs = new cryptostream(ms, encrypto, cryptostreammode.write);

cs.write(bytin, 0, bytin.length);

cs.flushfinalblock();

string strout = system.convert.tobase64string(ms.toarray());

return strout;

static public string md5decrypt(string source)

;//定義偏移量 

byte key = ;//定義金鑰 

descryptoserviceprovider mobjcryptoservice = new descryptoserviceprovider();

mobjcryptoservice.key = iv;

mobjcryptoservice.iv = key;

//例項流進行解密 

system.io.memorystream ms = new system.io.memorystream(bytin, 0, bytin.length);

icryptotransform encrypto = mobjcryptoservice.createdecryptor();

cryptostream cs = new cryptostream(ms, encrypto, cryptostreammode.read);

streamreader strd = new streamreader(cs, encoding.default);

return strd.readtoend();}}

---恢復內容結束---

C 建立資料夾,刪除資料夾,建立檔案,刪除檔案

protected void button1 click object sender,eventargs e 判斷檔案的存在 else string name getfiles.filename 獲取已上傳檔案的名字 string size getfiles.postedfile.contentle...

C語言 輸出到控制台和檔案

編寫乙個程式,用隨機數產生若干個隨機數存入檔案,然後從檔案中讀出整數。接著讀出數字到控制台輸出,並統計一共產生多少個隨機數,輸出最大最小值。include includeint max int a,int b int min int a,int b int main 輸出到顯示屏 freopen c...

centos徹底刪除資料夾建立檔案

centos徹底刪除資料夾 檔案命令 centos 新建 刪除 移動 複製等命令 1.新建資料夾 mkdir 檔名 新建乙個名為test的資料夾在home下 view source1 mkdir home test 2.新建文字 在home下新建乙個test.sh指令碼 vi home test.s...