DES对称性加密

using System;
using System.Security.Principal;
using System.Security.Permissions;
using System.Security.Cryptography;

namespace Demo
{
    class MainClass
    {
        /// <summary>
        /// DESCryptoServiceProvider
        /// </summary>
        public static void DESCryptoDemo ()
        {
            string message = "This message is security!";
            string strEncryp, strDecryp;

            DESCryptoServiceProvider des = new DESCryptoServiceProvider ();
            System.Text.Encoding encoding = new System.Text.UTF8Encoding ();

            byte[] key = encoding.GetBytes ("1a345689");
            byte[] iv = { 0, 91, 2, 3, 4, 5, 6, 7 };
            ICryptoTransform encryptor = des.CreateEncryptor (key, iv);
            ICryptoTransform decryptor = des.CreateDecryptor (key, iv);
            //all above 4 lines can be TiHuan as below
            des.GenerateKey ();
            des.GenerateIV ();
            encryptor = des.CreateEncryptor ();
            decryptor = des.CreateDecryptor ();
            {
                byte[] byteMessage = encoding.GetBytes (message);
                byte[] byteEncrypto = encryptor.TransformFinalBlock (byteMessage, 0, byteMessage.Length);
                strEncryp = Convert.ToBase64String (byteEncrypto);
            }
            {
                byte[] byteEncryto2 = Convert.FromBase64String (strEncryp);
                byte[] byteDecrypto = decryptor.TransformFinalBlock (byteEncryto2, 0, byteEncryto2.Length);
                strDecryp = encoding.GetString (byteDecrypto);
            }
            Console.WriteLine ("Message:" + message);
            Console.WriteLine ("Encrypted:" + strEncryp);
            Console.WriteLine ("Decrypted:" + strDecryp);
            Console.ReadKey ();
        }

        public static void Invoke (Action action)
        {
            try {
                action ();
            } catch (Exception ex) {
                Console.WriteLine (ex.Message);
            }
        }

        public static void Main (string[] args)
        {
            DESCryptoDemo ();
            Invoke (() => TestMethod1 ());
            Invoke (() => TestMethod2 ());
            Invoke (() => TestMethod3 ());
            Console.ReadKey ();
        }

        [PrincipalPermission (SecurityAction.Demand, Name = "Administrator")]
        public static void TestMethod1 ()
        {
            Console.WriteLine ("TestMethod1 successfully Executed!");
        }

        [PrincipalPermission (SecurityAction.Demand, Role = "Administrators")]
        public static void TestMethod2 ()
        {
            Console.WriteLine ("TestMethod2 successfully Executed!");
        }

        [PrincipalPermission (SecurityAction.Demand, Role = "Guests")]
        public static void TestMethod3 ()
        {
            Console.WriteLine ("TestMethod3 successfully Executed!");
        }
    }
}
时间: 2024-11-07 00:23:59

DES对称性加密的相关文章

PHP使用DES进行加密解密

DES是一种对称加密算法,也就是通过密文和合法的密钥能够将明文还原出来,在程序开发过程中有些 接口可能需要获取原始数据,而发送的数据又比较敏感(比如用户的密码等信息),这时可以选择DES加密算法,DES的安全性还算可靠,只要加密密钥不泄 露,目前破解的方法只有穷举法进行破解. 再说一下应用时需要注意的地方, 1.DES加密时需要的key(密钥)长度不能超过8位,一般我们设置8位就可以了. 2.DES加密后的数据是二进制数据,如果使用GET方式传输应该将其处理一下才可以(比如可以转换成16进制.b

DES对称加密

/// <summary> /// DES对称加密 /// </summary> public static class DESHelper { /// <summary> /// 根据用户名解密 /// </summary> /// <param name="val"></param> /// <param name="userid"></param> /// <

JAVA使用DES加密算法加密解密

程序中使用了.properties文件作为参数配置文档,好处是灵活配置各项参数 一旦对数据库的一些参数进行了配置,势必涉及数据库的IP,端口,用户名和密码 properties文件全是unicode编码明文存储,程序打包交付后,其他人能够很容易使用解压软件打开jar查看你的.properties文件 所以一些敏感变量需要加密处理 首先需要了解一些基本的加密算法,比如MD5,比如DES和RSA MD5是一种不可逆的加密算法,使用散列后特征码的方式表现需要加密的字符或者文件,常用在系统登陆的密码比对

DES非对称加密解密跨平台(C#,安卓,ios)

#region 跨平台加解密(c# 安卓 IOS) public static string sKey = "123456"; /// <summary> /// 解密 /// </summary> /// <param name="pToDecrypt">要解密的以Base64</param> /// <param name="sKey">密钥,且必须为8位</param>

DES/des3 加密程序

1 #ifndef POLARSSL_DES_H 2 #define POLARSSL_DES_H 3 4 #define DES_ENCRYPT 1 5 #define DES_DECRYPT 0 6 7 #define POLARSSL_ERR_DES_INVALID_INPUT_LENGTH -0x0C00 8 9 /** 10 * \brief DES context structure 11 */ 12 typedef struct 13 { 14 int mode; /*!< enc

【Android工具】DES终结者加密时报——AES加密演算法

转载请注明出处:http://blog.csdn.net/zhaokaiqiang1992 在前面的两篇文章中.我们介绍了DES算法,3DES算法以及他们的Android程序实现,并研究了怎样才干实现不同平台下加密算法的一致性. 只是话说起来,DES算法是在1976年被美国的国家标准局定为联邦资料的加密标准的,到如今已经接近40年了.我们都知道.在计算机的世界里有一个摩尔定律.就是每过18个月.计算机的晶体管的数量就会翻一番,相应的计算速度也会翻倍,尽管如今的发展速度有所放缓,可是每过三年左右,

三重Des对称加密在Android、Ios 和Java 平台的实现

引言 如今手机app五彩缤纷,确保手机用户的数据安全是开发人员必须掌握的技巧,下面通过实例介绍DES在android.ios.java平台的使用方法: DES加密是目前最常用的对称加密方式,性能优于非对称加密(RSA),是手机app请求数据加密的优先选择.   DES简介: DES全称为Data Encryption Standard,即数据加密标准,是一种使用密钥加密的块算法, 算法的入口参数有三个:Key.Data.Mode. Key:为7个字节共56位,是DES算法的工作密钥; Data:

Android 平台DES IV 加密解密随笔

好记性不如烂笔头,所以开始写博客了.一方面加深自己的理解,二方面给后面初学者少走弯路,不论难易,有些东西可能理解的不深,欢迎各位高手指导赐教加吐槽! DES加密接触过好多次了,但总容易忘,和服务器交互时,加出来不一致后面能解密成功但是头部是乱码导致小坑了一会,在此记录下来~ 根据百度百科和自己的理解,DES是一个基于56位密钥的对称的加密算法,就是两边的密钥需要一致,在此就不考虑为什么不用安全性更高的AES或者采用非对称加密方法,比如RSA等等:关于密钥空间小,可以使用DES的派生算法3DES来

ruby的加密方法整理(des rsa加密 加签)

# coding:utf-8require 'openssl'require 'base64'#des加密并且base64编码def des_encrypt des_key, des_text des =OpenSSL::Cipher::Cipher.new("DES-ECB") des.encrypt des.key=des_key des_text="#{des_text}" result = des.update(des_text) result <&l