当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP、Java des加密解密实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-23 12:04:34 浏览: 评论:0 

这篇文章主要介绍了PHP、Java des加密解密实例,des加密是对称加密中在互联网应用的比较多的一种加密方式,本文分别给出了PHP和JAVA版本的实现代码,需要的朋友可以参考下。

des加密是对称加密中在互联网应用的比较多的一种加密方式,php 通过mcrypt扩展库来支持des加密,要在Php中使用des加密,需要先安装mcrypt扩展库

下面是加密解密的实例,代码如下:

  1. $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);  
  2. $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);  
  3. $key = "This is a very secret key";//密钥  
  4. $text = "Meet me at 11 o'clock behind the monument.";//需要加密的内容  
  5. echo ($text) . "\n";  
  6.  
  7. $crypttext =base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key$text, MCRYPT_MODE_ECB, $iv));  
  8. echo $crypttext . "\n";//加密后的内容  
  9.  
  10. echo mcrypt_decrypt(MCRYPT_RIJNDAEL_256,$key,base64_decode($crypttext),MCRYPT_MODE_ECB,$iv);//解密后的内容  

在AES加密算法中通常会用到MCRYPT_RIJNDAEL_128、MCRYPT_RIJNDAEL_192、MCRYPT_RIJNDAEL_256三种,后面的128、192、256代表的是秘钥(也就是加密的Key)是多少bit的,比如使用的是MCRYPT_RIJNDAEL_128,那么用这个算法加密时秘钥长度就是128bit的,比如 $key = 'fjjda0&9^$$#+*%$fada',是20个字符,那在实际加密的时候只用到前16个字符加密(16*8=128),不足128bit的php中会用'\0'来补齐。

有的时候做项目对接的时候,可能你用的是Php加密的,而对方用的是java写的,对接的过程中就发现机加密后的内容对方解密不了,这是因为Php跟java在实现这个算法的时候有差别,要想正确加密解密需要两边都做下处理:

PHP:

  1. <?php  
  2. class Security {  
  3.     public static function encrypt($input$key) {  
  4.         $size = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);  
  5.         $input = Security::pkcs5_pad($input$size);  
  6.         $td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_ECB, '');  
  7.         $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND);  
  8.         mcrypt_generic_init($td$key$iv);  
  9.         $data = mcrypt_generic($td$input);  
  10.         mcrypt_generic_deinit($td);  
  11.         mcrypt_module_close($td);  
  12.         $data = base64_encode($data);  
  13.         return $data;  
  14.     }  
  15.    
  16.     private static function pkcs5_pad ($text$blocksize) {  
  17.         $pad = $blocksize - (strlen($text) % $blocksize);  
  18.         return $text . str_repeat(chr($pad), $pad);  
  19.     }  
  20.    
  21.     public static function decrypt($sStr$sKey) {  
  22.         $decrypted= mcrypt_decrypt(  
  23.         MCRYPT_RIJNDAEL_128,  
  24.         $sKey,  
  25.         base64_decode($sStr),  
  26.         MCRYPT_MODE_ECB  
  27.     );  
  28.    
  29.         $dec_s = strlen($decrypted);  
  30.         $padding = ord($decrypted[$dec_s-1]);  
  31.         $decrypted = substr($decrypted, 0, -$padding);  
  32.         return $decrypted;  
  33.     }     
  34. }  
  35.    
  36. $key = "1234567891234567";  
  37. $data = "example";  
  38.    
  39. $value = Security::encrypt($data , $key );  
  40. echo $value.'<br/>';  
  41. echo Security::decrypt($value$key );  

Java:

  1. import javax.crypto.Cipher;  
  2. import javax.crypto.spec.SecretKeySpec;  
  3.    
  4. import org.apache.commons.codec.binary.Base64;  
  5.    
  6. public class Security {  
  7.     public static String encrypt(String input, String key){  
  8.         byte[] crypted = null;  
  9.         try{  
  10.             SecretKeySpec skey = new SecretKeySpec(key.getBytes(), "AES");  
  11.             Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");  
  12.             cipher.init(Cipher.ENCRYPT_MODE, skey);  
  13.             crypted = cipher.doFinal(input.getBytes());  
  14.         }catch(Exception e){  
  15.         System.out.println(e.toString());  
  16.     }  
  17.     return new String(Base64.encodeBase64(crypted));  
  18. }  
  19.    
  20.     public static String decrypt(String input, String key){  
  21.         byte[] output = null;  
  22.         try{  
  23.             SecretKeySpec skey = new SecretKeySpec(key.getBytes(), "AES");  
  24.             Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");  
  25.             cipher.init(Cipher.DECRYPT_MODE, skey);  
  26.             output = cipher.doFinal(Base64.decodeBase64(input));  
  27.             }catch(Exception e){  
  28.             System.out.println(e.toString());  
  29.         }  
  30.         return new String(output);  
  31.     }  
  32.    
  33.     public static void main(String[] args) {  
  34.         String key = "1234567891234567";  
  35.         String data = "example";  
  36.           
  37.         System.out.println(Security.encrypt(data, key));  
  38.           
  39.         System.out.println(Security.decrypt(Security.encrypt(data, key), key));  
  40.           
  41.               
  42.     }     
  43. }

Tags: PHP Java des 加密解密

分享到: