乙個可逆加密的例子

2021-04-12 18:03:27 字數 1370 閱讀 9491

<%@ page language="c#" enableviewstate = "true" codebehind="encryptstring.aspx.cs" autoeventwireup="false" inherits="emeng.exam.encryptstring" %>

using system;

using system.collections;

using system.componentmodel;

using system.drawing;

using system.web;

using system.web.sessionstate;

using system.web.ui;

using system.web.ui.webcontrols;

using system.web.ui.htmlcontrols;

using system.io;

using system.text;

using system.security.cryptography;

namespace emeng.exam

}#region web 窗體設計器生成的**

override protected void oninit(eventargs e)

///

/// 設計器支援所需的方法 - 不要使用**編輯器修改

/// 此方法的內容。

///

private void initializecomponent()

#endregion

private void radiobuttonlist1_selectedindexchanged(object sender, system.eventargs e)

// 加密

public string encrypttext(string strtext)

//'解密

public string decrypttext(string strtext)

//'加密函式

private string encrypt(string strtext, string strencrkey)

;

byte iv  = ;

trycatch(exception ex)

}//'解密函式

private string decrypt(string strtext, string sdecrkey)

;byte iv = ;

byte inputbytearray = new byte[strtext.length];

trycatch(exception ex)}}

}

乙個可逆加密的例子

下面的這個例子實現了乙個可逆加密的例子功能。很簡單,這裡就不多解釋了。如下 encstring.aspx page language vb autoeventwireup false codebehind encstring.aspx.vb inherits aspxweb.encstring en...

乙個可逆加密的類 使用3DES加密

一 提要 命名空間 system.security.cryptography.tripledes 類 簡單說明 表示三重資料加密標準演算法的基類,tripledes 的所有實現都必須從此基類派生。是從 symmetricalgorithm 類裡繼承出來。tripledes 使用 des 演算法的三次...

乙個簡潔的PHP可逆加密函式 分享

很多時候我們需要對資料進行加密解密,比如有些資料需要儲存到cookie中,但又不能被使用者輕易得到這些資料,這時我們就需要加密這些資料儲存到cookie中,等我們需要使用它們的時候再解密。加密的過程如下 複製 如下 加密資料並寫到cookie裡 cookie data this encrypt no...