C#中常用加密算法

在日常的项目开发中,很多时候都会用到加密/解密的功能,以下是我整理出来的一些常见加密/解密的算法:包括MD5加密、SHA256加密、移位加密/解密、DES加密/解密、AES加密/解密,给大家分享一下。

 

using  System;
using  System.Collections.Generic;
using  System.Text;
using  System.Security.Cryptography;
using  System.IO;

public   class  Encrypt
{
    
MD5加密

    
SHA256加密

    
移位加密/解密

    
DES加密/解密

    
AES加密/解密
}

 

这里是上面的源代码:点击这里下载

你可能感兴趣的:(C#)