java 的3DES解密和加密

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 的3DES解密和加密相关的知识,希望对你有一定的参考价值。

/**
     * 3des解密
     *
     * @param ss
     *            要解密的数据
     * @param deskey
     *            生成密钥用的数组
     * @return
     * @throws NoSuchAlgorithmException
     * @throws NoSuchPaddingException
     * @throws InvalidKeyException
     * @throws IllegalBlockSizeException
     * @throws BadPaddingException
     */
     public static byte[] DesDecode(byte[] ss, byte[] deskey)
               throws NoSuchAlgorithmException, NoSuchPaddingException,
               InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
          //负责完成加密或解密工
          Cipher c = Cipher.getInstance(modeDes);
          //格式化密
          SecretKeySpec k = new SecretKeySpec(deskey, modeDesKey);
          // 根据密钥,对Cipher对象进行初始ENCRYPT_MODE表示加密模式
          c.init(Cipher.DECRYPT_MODE, k);
          // 解密,结果保存进dec
          byte[] dec = c.doFinal(ss);
          return dec;
     }
     




     /**
     * 3des加密
     *
     * @param ss
     *            要加密的字符
     * @param deskey
     * @return
     * @throws NoSuchAlgorithmException
     * @throws NoSuchPaddingException
     * @throws InvalidKeyException
     * @throws IllegalBlockSizeException
     * @throws BadPaddingException
     * @throws UnsupportedEncodingException
     */
     public static byte[] DesEncode(byte[] ss, byte[] deskey)
               throws NoSuchAlgorithmException, NoSuchPaddingException,
               InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
          //负责完成加密或解密工
          Cipher c = Cipher.getInstance(modeDes);
          //格式化密
          SecretKeySpec k = new SecretKeySpec(deskey, modeDesKey);
          // 根据密钥,对Cipher对象进行初始ENCRYPT_MODE表示加密模式
          c.init(Cipher.ENCRYPT_MODE, k);
          byte[] src = ss;
          // 加密,结果保存进enc
          byte[] enc = c.doFinal(ss);
          return enc;
     }


本文出自 “当初” 博客,请务必保留此出处http://9497786.blog.51cto.com/9487786/1749999

以上是关于java 的3DES解密和加密的主要内容,如果未能解决你的问题,请参考以下文章

如何用Java进行3DES加密解密

如何用Java进行3DES加密解密

java 3des加密问题记录

怎么用C#解密 Java写的3des加密 ~~~~密钥是48位的。

java进行3des加密传过来的数据,php怎么解密?

java之--加密解密算法