DES算法入口参数

DES算法的入口参数有三个:Key、Data、Mode。其中Key为7个字节共56位,是DES算法的工作密钥。Data为8个字节64位,是要被加密或解密的数据;Mode为DES的工作方法,有两种:加密或解密。

  1. 加密解密文件

             /// <summary>
    /// Enctypt File
    /// </summary>
    /// <param name="sInputFilename"></param>
    /// <param name="sOutputFilename"></param>
    /// <param name="sKey"></param>
    public void EncryptFile(string sInputFilename, string sOutputFilename, string sKey)
    {
    DESCryptoServiceProvider DES = new DESCryptoServiceProvider();
    //A 64 bit key and IV is required for this provider.
    //Set secret key For DES algorithm.
    DES.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
    //Set initialization vector.
    DES.IV = ASCIIEncoding.ASCII.GetBytes(sKey); FileStream fin = null;
    FileStream fout = null;
    CryptoStream cryptoStream = null;
    try
    {
    fin = new FileStream(sInputFilename, FileMode.Open, FileAccess.Read);
    fout = new FileStream(sOutputFilename, FileMode.OpenOrCreate, FileAccess.Write);
    cryptoStream = new CryptoStream(fout, DES.CreateEncryptor(), CryptoStreamMode.Write); byte[] bin = new byte[]; //This is intermediate storage for the decryption.
    long rdlen = ; //This is the total number of bytes written.
    long totlen = fin.Length; //This is the total length of the input file.
    int len; //This is the number of bytes to be written at a time. //Read from the input file, then encrypt and write to the output file.
    while (rdlen < totlen)
    {
    len = fin.Read(bin, , );
    cryptoStream.Write(bin, , len);
    rdlen = rdlen + len;
    }
    }
    catch (Exception ex)
    {
    throw ex;
    }
    finally
    {
    if (cryptoStream != null) { cryptoStream.Close(); }
    if (fout != null) { fout.Close(); }
    if (fin != null) { fin.Close(); }
    }
    } /// <summary>
    /// Decrypt File
    /// </summary>
    /// <param name="sInputFilename"></param>
    /// <param name="sOutputFilename"></param>
    /// <param name="sKey"></param>
    public void DecryptFile(string sInputFilename, string sOutputFilename,string sKey)
    {
    DESCryptoServiceProvider DES = new DESCryptoServiceProvider();
    //A 64 bit key and IV is required for this provider.
    //Set secret key For DES algorithm.
    DES.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
    //Set initialization vector.
    DES.IV = ASCIIEncoding.ASCII.GetBytes(sKey); FileStream fin = null;
    FileStream fout = null;
    CryptoStream cryptoStream = null;
    try
    {
    fin = new FileStream(sInputFilename, FileMode.Open, FileAccess.Read);
    fout = new FileStream(sOutputFilename, FileMode.OpenOrCreate, FileAccess.Write);
    cryptoStream = new CryptoStream(fin, DES.CreateDecryptor(), CryptoStreamMode.Read); byte[] bin = new byte[]; //This is intermediate storage for the decryption.
    long rdlen = ; //This is the total number of bytes written.
    long totlen = fin.Length; //This is the total length of the input file.
    int len; //This is the number of bytes to be written at a time. //Read from the input file, then encrypt and write to the output file.
    while (rdlen < totlen)
    {
    len = cryptoStream.Read(bin, , );
    if (len == ) { break; }
    fout.Write(bin, , len);
    rdlen = rdlen + len;
    }
    }
    catch(Exception ex)
    {
    throw ex;
    }
    finally
    {
    if (cryptoStream != null) { cryptoStream.Close(); }
    if (fout != null) { fout.Close(); }
    if (fin != null) { fin.Close(); }
    }
    }
  2. 加密解密文本
             /// <summary>
    /// Encrypt Text
    /// </summary>
    public string DesEncrypt(string pToEncrypt, string sKey)
    {
    MemoryStream ms = null;
    CryptoStream ctyptoStream = null;
    try
    {
    DESCryptoServiceProvider des = new DESCryptoServiceProvider();
    des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
    des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); byte[] inputByteArray = Encoding.ASCII.GetBytes(pToEncrypt); ms = new System.IO.MemoryStream();
    ctyptoStream = new CryptoStream(ms, des.CreateEncryptor(), CryptoStreamMode.Write);
    ctyptoStream.Write(inputByteArray, , inputByteArray.Length);
    ctyptoStream.FlushFinalBlock();
    }
    catch (Exception ex)
    {
    throw ex;
    }
    finally
    {
    if (ctyptoStream != null) { ctyptoStream.Close(); }
    if (ms != null) { ms.Close(); }
    }
    return Convert.ToBase64String(ms.ToArray());
    } /// <summary>
    /// Dectypt Text
    /// </summary>
    public string DesDecrypt(string pToDecrypt, string sKey)
    {
    MemoryStream ms = null;
    CryptoStream ctyptoStream = null;
    try
    {
    DESCryptoServiceProvider des = new DESCryptoServiceProvider();
    des.Key = ASCIIEncoding.ASCII.GetBytes(sKey);
    des.IV = ASCIIEncoding.ASCII.GetBytes(sKey); byte[] inputByteArray = Convert.FromBase64String(pToDecrypt); ms = new System.IO.MemoryStream();
    ctyptoStream = new CryptoStream(ms, des.CreateDecryptor(), CryptoStreamMode.Write);
    ctyptoStream.Write(inputByteArray, , inputByteArray.Length);
    ctyptoStream.FlushFinalBlock();
    }
    catch (Exception ex)
    {
    throw ex;
    }
    finally
    {
    if (ctyptoStream != null) { ctyptoStream.Close(); }
    if (ms != null) { ms.Close(); }
    }
    return Encoding.ASCII.GetString(ms.ToArray());
    }

DES(Data Encryption Standard)数据加密标准的更多相关文章

  1. Oracle 10g R2 Transparent Data Encryption 透明数据加密

    Oracle 10g R2 Transparent Data Encryption 透明数据加密 本章介绍如何使用透明数据加密来保护Oracle数据库中的敏感数据,该功能使您可以加密数据库列并管理加密 ...

  2. SQL Server ->> Transparent Data Encryption(透明化数据加密)

    Comming later... 参考文献: Transparent Data Encryption (TDE)

  3. 目前常用的加密算法有DES(Data Encryption Standard)和IDEA(International Data Encryption Algorithm)国际数据加密算法等,请用工厂方法实现加密算法系统。提交该系统的代码,该系统务必是一个可以能够直接使用的系统,查阅资料完成相应加密算法的实现;

    1.加密算法的类图结构 2.源代码 2.1代码运行截图 2.2代码的目录结构 2.3具体代码 MethodFactory.java package jiami; public interface Me ...

  4. 数据加密标准(DES)详解

    1 简介 1.1 历史 DES(Data Encryption Standard)是由IBM公司在1974年提出的加密算法,在1977年被NIST定位数据加密标准.随后的很多年里,DES都是最流行的对 ...

  5. 3DES(或称为Triple DES)是三重数据加密算法(TDEA,Triple Data Encryption Algorithm)

    3DES(或称为Triple DES)是三重数据加密算法(TDEA,Triple Data Encryption Algorithm)块密码的通称.它相当于是对每个数据块应用三次DES加密算法.由于计 ...

  6. SQL Server安全(9/11):透明数据加密(Transparent Data Encryption)

    在保密你的服务器和数据,防备当前复杂的攻击,SQL Server有你需要的一切.但在你能有效使用这些安全功能前,你需要理解你面对的威胁和一些基本的安全概念.这篇文章提供了基础,因此你可以对SQL Se ...

  7. AES--高级数据加密标准

    AES--高级数据加密标准 对称密码体制的发展趋势将以分组密码为重点.分组密码算法通常由密钥扩展算法和加密(解密)算法两部分组成.密钥扩展算法将b字节用户主密钥扩展成r个子密钥.加密算法由一个密码学上 ...

  8. TDE: Transparent Data Encryption brief introduction

    1. What is TDE? Briefly speaking, TDE is used to encrypted data. 2. The benifits: Belows are come fr ...

  9. Data Encryption Errors After Restoring Microsoft Dynamics CRM Database

    If you’re seeing an error similar to the one above, you’ve probably done a database backup and resto ...

随机推荐

  1. nodejs+express开发blog(2)

    npm install -g nodemon 1,把ejs文件修改为html文件 app.engine('.html', require('ejs').__express);app.set('view ...

  2. 寻找AP数

    题目背景 正整数n是无穷的,但其中有些数有神奇的性质,我们给它个名字--AP数. 题目描述 对于一个数字i是AP数的充要条件是所有比它小的数的因数个数都没有i的因数个数多.比如6的因数是1 2 3 6 ...

  3. Eclipse关联tomcat

    一,添加Tomcat Windows-->Preferences-->Server-->Runtime Enviroment添加一个tomcat,这里选择tomcat8.0 Next ...

  4. HTTP缓存初探

    缓存的作用 用户访问一个web页面的频率远高于web页面更新的频率,因此多数时候用户从服务器获取的html.js.css以及图片等内容都是相同的,如果每次访问都从服务器获取这些静态内容即降低了页面加载 ...

  5. 三、css篇

    #这里强烈推荐一本书<css世界>,css第一书. #上面的层叠顺序得记住. 1.align-items  justify-content 是flex(弹性盒模型)必须要会的属性,alig ...

  6. 什么是token及怎样生成token

    什么是token Token是服务端生成的一串字符串,以作客户端进行请求的一个令牌,当第一次登录后,服务器生成一个Token便将此Token返回给客户端,以后客户端只需带上这个Token前来请求数据即 ...

  7. Nodejs 使用 SerialPort 调用串口

    工作经常使用串口读写数据,electron 想要替代原来的客户端,串口成了必须要突破的障碍. get -->  https://github.com/EmergingTechnologyAdvi ...

  8. 商城项目:商品列表ajax加载,ajax加入购物车--五张表的联合查询

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProductLists.a ...

  9. windows环境下,用python绘图库matplotlib绘图时中文乱码问题

    1.下载中文字体(看自己爱好就行)下面这个举例: SimHei - Free Font Download​www.fontpalace.co 2.下载之后,打开即可安装,将字体安装进windows系统 ...

  10. Redis的自从复制(Master/Slave)

    一.是什么? 行话:也就是我们所说的主从复制,主机数据更新后根据配置和策略,自动同步到备机的master/slaver机制,Master以写为主,Slave以读为主 二.能干嘛? 1.读写分离 2.容 ...