1.加密结果

  包含 : 对int加密 、对string加密、对byte[]加密。

 10-09 18:33:32.484 7617-7617/com.example.tt.downtest D/CipherUtil: init Cipher needs 18 ms
 10-09 18:33:32.484 7617-7617/com.example.tt.downtest D/CipherUtil: -----=====-----------=========-----
 10-09 18:33:32.484 7617-7617/com.example.tt.downtest D/CipherUtil: bytes data is  [ ��
                                                                     ]
 10-09 18:33:32.490 7617-7617/com.example.tt.downtest D/CipherUtil: encrypt ret is [ ����h�1 !m�7M��J�˝��� ] needs 5 ms
 10-09 18:33:32.490 7617-7617/com.example.tt.downtest D/CipherUtil: decrypt ret is [ ��
                                                                     ] needs 0 ms
 10-09 18:33:32.490 7617-7617/com.example.tt.downtest D/CipherUtil: -----=====-----------=========-----
 10-09 18:33:32.490 7617-7617/com.example.tt.downtest D/CipherUtil: int data is  [ 100 ]
 10-09 18:33:32.490 7617-7617/com.example.tt.downtest D/CipherUtil: encrypt ret is [ [��sZ"� ] needs 0 ms
 10-09 18:33:32.490 7617-7617/com.example.tt.downtest D/CipherUtil: decrypt ret is [ 100 ] needs 0 ms
 10-09 18:33:32.490 7617-7617/com.example.tt.downtest D/CipherUtil: -----=====-----------=========-----
 10-09 18:33:32.491 7617-7617/com.example.tt.downtest D/CipherUtil: string data is [ hello world ]
 10-09 18:33:32.491 7617-7617/com.example.tt.downtest D/CipherUtil: encrypt ret is [ ��́��|��@�y��y ] needs 0 ms
 10-09 18:33:32.491 7617-7617/com.example.tt.downtest D/CipherUtil: decrypt ret is [ hello world ] needs 0 ms

2.完整示例

 package com.example.tt.downtest;

 import android.util.Log;

 import java.security.InvalidKeyException;
 import java.security.NoSuchAlgorithmException;
 import java.security.spec.InvalidKeySpecException;

 import javax.crypto.BadPaddingException;
 import javax.crypto.Cipher;
 import javax.crypto.IllegalBlockSizeException;
 import javax.crypto.NoSuchPaddingException;
 import javax.crypto.SecretKey;
 import javax.crypto.SecretKeyFactory;
 import javax.crypto.spec.DESKeySpec;

 public class CipherUtil {

     final String TAG = "CipherUtil";
     long begin,end;

     String algorithm = "DES";
     Cipher cipher;
     SecretKey secretKey;
     ,};

     void init(){
         begin = System.currentTimeMillis();
         try {
             cipher = Cipher.getInstance(algorithm);
             DESKeySpec keySpec = new DESKeySpec(key);
             SecretKeyFactory keyFactory = SecretKeyFactory.getInstance(algorithm);
             secretKey = keyFactory.generateSecret(keySpec);
         } catch (NoSuchAlgorithmException e) {
             e.printStackTrace();
         } catch (NoSuchPaddingException e) {
             e.printStackTrace();
         } catch (InvalidKeyException e) {
             e.printStackTrace();
         } catch (InvalidKeySpecException e) {
             e.printStackTrace();
         }
         end = System.currentTimeMillis();
         Log.d(TAG, "init Cipher needs " + (end - begin) + " ms");
     }

     byte[] des(int mode,byte data[]){

         byte[] ret = null;
         //加密的内容存在并且密钥存在且长度为8个字节
         ) {
             try {
                 //Cipher.DECRYPT_MODE 解密
                 //Cipher.ENCRYPT_MODE 加密
                 cipher.init(mode, secretKey);
                 ret = cipher.doFinal(data);

             } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
             } catch (BadPaddingException e) {
                 e.printStackTrace();
             } catch (InvalidKeyException e) {
                 e.printStackTrace();
             }
         }
         return ret;
     }

     //DES 解密
     public byte[] desDecrypt(byte data[]){
         return des(Cipher.DECRYPT_MODE,data);
     }
     //DES 加密
     public byte[] desEncrypt(byte data[]){
         return des(Cipher.ENCRYPT_MODE,data);
     }

     //byte 数组与 int 的相互转换
     public static int byteArrayToInt(byte[] b) {
         ] & 0xFF        |
                 (b[] &   |
                 (b[] &  |
                 (b[] &  ;
     }

     public static byte[] intToByteArray(int a) {
         return new byte[] {
                 ()   & 0xFF),
                 ()   & 0xFF),
                 ()    & 0xFF),
                 (byte) (a           & 0xFF)
         };
     }

     public CipherUtil(){
         init();
     }

     void testEncryptBytes(){
         ];
         ;i < data.length;++i){
             data[i] = (byte) i;
         }
         Log.d(TAG, "bytes data is  [ " + new String(data) + " ]");

         begin = System.currentTimeMillis();
         byte encrypt[] = desEncrypt(data);
         end = System.currentTimeMillis();
         Log.d(TAG, "encrypt ret is [ " + new String(encrypt) + " ] needs " + (end - begin) + " ms");

         begin = System.currentTimeMillis();
         byte decrypt[] = desDecrypt(encrypt);
         end = System.currentTimeMillis();

         Log.d(TAG, "decrypt ret is [ " + new String(decrypt) + " ] needs " + (end - begin) + " ms");

     }
     void testEncryptInt(){
         ;
         byte bytes[] = intToByteArray(data);
         Log.d(TAG, "int data is  [ " + data + " ]");

         begin = System.currentTimeMillis();
         byte encrypt[] = desEncrypt(bytes);
         end = System.currentTimeMillis();
         Log.d(TAG, "encrypt ret is [ " + new String(encrypt) + " ] needs " + (end - begin) + " ms");

         begin = System.currentTimeMillis();
         byte decrypt[] = desDecrypt(encrypt);
         end = System.currentTimeMillis();

         Log.d(TAG, "decrypt ret is [ " + byteArrayToInt(decrypt) + " ] needs " + (end - begin) + " ms");

     }
     void testEncryptString(){
         String str = "hello world";
         byte data[] = str.getBytes();
         Log.d(TAG, "string data is [ " + str + " ]");

         begin = System.currentTimeMillis();
         byte encrypt[] = desEncrypt(data);
         end = System.currentTimeMillis();
         Log.d(TAG, "encrypt ret is [ " + new String(encrypt) + " ] needs " + (end - begin) + " ms");

         begin = System.currentTimeMillis();
         byte decrypt[] = desDecrypt(encrypt);
         end = System.currentTimeMillis();

         Log.d(TAG, "decrypt ret is [ " + new String(decrypt) + " ] needs " + (end - begin) + " ms");

     }

     public void testMain(){

         Log.d(TAG, "-----=====-----------=========-----");
         testEncryptBytes();
         Log.d(TAG, "-----=====-----------=========-----");
         testEncryptInt();
         Log.d(TAG, "-----=====-----------=========-----");
         testEncryptString();
     }
 }

java 简单的des加密示例的更多相关文章

  1. Java与.NET DES加密解密互转

    上代码: Java代码: import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.SecretKe ...

  2. 【Java】通过DES加密和解密工具,对字符串进行加密和解密操作

    分享一个非常不错的字符串加密和解密的程序. 可以指定不同的密钥对同一字符串进行不同的加密操作,增强加密性能. Java代码如下: package com.app; import java.securi ...

  3. PHP 识别 java 8位 des 加密和 解密方式

    代码及使用说明: <?php /** *PHP 识别 java 8位密钥的加密和解密方式 *@desc 加密方式 通用 */ class DES { var $key; var $iv; //偏 ...

  4. java简单实现MD5加密

    1.话不多说,直接上代码-----传入字符串,返回加密码 import java.security.MessageDigest; import java.text.NumberFormat; publ ...

  5. 关于Objective-c和Java下DES加密保持一致的方式

    转载自:http://www.cnblogs.com/janken/archive/2012/04/05/2432930.html 最近做了一个移动项目,是有服务器和客户端类型的项目,客户端是要登录才 ...

  6. C# DES加密类,16位的加密。

    这个加密类是与java写的DES加密不同时,自己写的,最后与Java的加密相同了,解决了加密后不同的问题. 可以直接调用里面的加密和解密的方法. using System; using System. ...

  7. JAVA实现DES加密实现详解

    package util; import java.security.SecureRandom; import javax.crypto.spec.DESKeySpec; import javax.c ...

  8. JAVA实现DES加密

    DES加密介绍       DES是一种对称加密算法,所谓对称加密算法即:加密和解密使用相同密钥的算法.DES加密算法出自IBM的研究,后来被美国政府正式采用,之后开始广泛流传,但是近些年使用越来越少 ...

  9. IOS、java支持DES加密

    转载请注明博客地址:http://blog.csdn.net/mengxiangyue/article/details/40015727 近期在考虑数据加密方面的需求,所以对数据加密简单的看了一下,当 ...

随机推荐

  1. [转]不完美解决V社游戏的中文支持问题

    先安装安装文泉驿正黑:sudo apt-get install fonts-wqy-zenhei 然后sudo gedit /etc/fonts/conf.avail/25-wqy-zenhei.co ...

  2. 常用Linux命令:netstat

    一.netstat:显示各种网络相关信息 1.命令格式 netstat [参数] 2.常用参数 -a   :(all)显示所有选项,默认不现实LISTEN相关 -t    :(tcp)仅显示tcp相关 ...

  3. db2中临时表在存储过程中的使用

    DROP PROCEDURE ADMINISTRATOR.SP_TEST (INTEGER, CHARACTER ()); CREATE PROCEDURE administrator.sp_test ...

  4. C# System.Threading.Timer 定时器

    前提: 需要引入  System.Threading: 描述: 在很多时间我们都需要进行延迟执行,或是定时执行一些指定业务,这个时候使用 Timer 是最合适的,而且 Timer 是Cpu 级别处理对 ...

  5. pdo + 事务处理 处理线性事务

    /* * 事物处理线性操作. * 以转账为例 */ header('Content-type:text/html;charset=utf-8'); $opt = array(PDO::ATTR_PER ...

  6. Weekly Contest 117

    965. Univalued Binary Tree A binary tree is univalued if every node in the tree has the same value. ...

  7. Scrapy 增量式爬虫

    Scrapy 增量式爬虫 https://blog.csdn.net/mygodit/article/details/83931009 https://blog.csdn.net/mygodit/ar ...

  8. (转)使用vs调试的时候,如何知道程序阻塞在哪里?

    遇到一个问题,加了两个断点当运行到断点A后,我释放掉了,理想状态应该是在断点B停住,但并没有,程序感觉就像是阻塞了一样请问,这种状况如何知道程序当前是在哪里阻塞着? 回复: 可以让调试器停住,然后在调 ...

  9. 【BZOJ1853】[Scoi2010]幸运数字 容斥原理+搜索

    Description 在中国,很多人都把6和8视为是幸运数字!lxhgww也这样认为,于是他定义自己的"幸运号码"是十进制表示中只包含数字6和8的那些号码,比如68,666,88 ...

  10. Ubuntu16.04搭建各种开发环境的IDE: QT5 , CodeBlocks ,eclipse-cdt, PyCharm

    搭建Ubuntu下C/C++以及Python的集成开发环境,采用双系统(Win7+Ubuntu)的Ubuntu16.04-LTS系统, 关于双系统的搭建可以参考下面博客(图文十分详细):https:/ ...