PHP、Java des加密解密實(shí)例
來源:易賢網(wǎng) 閱讀:1607 次 日期:2015-04-28 15:03:27
溫馨提示:易賢網(wǎng)小編為您整理了“PHP、Java des加密解密實(shí)例”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了PHP、Java des加密解密實(shí)例,des加密是對稱加密中在互聯(lián)網(wǎng)應(yīng)用的比較多的一種加密方式,本文分別給出了PHP和JAVA版本的實(shí)現(xiàn)代碼,需要的朋友可以參考下

des加密是對稱加密中在互聯(lián)網(wǎng)應(yīng)用的比較多的一種加密方式,php 通過mcrypt擴(kuò)展庫來支持des加密,要在Php中使用des加密,需要先安裝mcrypt擴(kuò)展庫

下面是加密解密的實(shí)例

代碼如下:

$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB);

$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);

$key = "This is a very secret key";//密鑰

$text = "Meet me at 11 o'clock behind the monument.";//需要加密的內(nèi)容

echo ($text) . "\n";

$crypttext =base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $text, MCRYPT_MODE_ECB, $iv));

echo $crypttext . "\n";//加密后的內(nèi)容

echo mcrypt_decrypt(MCRYPT_RIJNDAEL_256,$key,base64_decode($crypttext),MCRYPT_MODE_ECB,$iv);//解密后的內(nèi)容

在AES加密算法中通常會用到MCRYPT_RIJNDAEL_128、MCRYPT_RIJNDAEL_192、MCRYPT_RIJNDAEL_256三種,后面的128、192、256代表的是秘鑰(也就是加密的Key)是多少bit的,比如使用的是MCRYPT_RIJNDAEL_128,那么用這個(gè)算法加密時(shí)秘鑰長度就是128bit的,比如 $key = 'fjjda0&9^$$#+*%$fada',是20個(gè)字符,那在實(shí)際加密的時(shí)候只用到前16個(gè)字符加密(16*8=128),不足128bit的php中會用'\0'來補(bǔ)齊。

有的時(shí)候做項(xiàng)目對接的時(shí)候,可能你用的是Php加密的,而對方用的是java寫的,對接的過程中就發(fā)現(xiàn)機(jī)加密后的內(nèi)容對方解密不了,這是因?yàn)镻hp跟java在實(shí)現(xiàn)這個(gè)算法的時(shí)候有差別,要想正確加密解密需要兩邊都做下處理:

PHP:

代碼如下:

class Security {

public static function encrypt($input, $key) {

$size = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);

$input = Security::pkcs5_pad($input, $size);

$td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_ECB, '');

$iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND);

mcrypt_generic_init($td, $key, $iv);

$data = mcrypt_generic($td, $input);

mcrypt_generic_deinit($td);

mcrypt_module_close($td);

$data = base64_encode($data);

return $data;

}

private static function pkcs5_pad ($text, $blocksize) {

$pad = $blocksize - (strlen($text) % $blocksize);

return $text . str_repeat(chr($pad), $pad);

}

public static function decrypt($sStr, $sKey) {

$decrypted= mcrypt_decrypt(

MCRYPT_RIJNDAEL_128,

$sKey,

base64_decode($sStr),

MCRYPT_MODE_ECB

);

$dec_s = strlen($decrypted);

$padding = ord($decrypted[$dec_s-1]);

$decrypted = substr($decrypted, 0, -$padding);

return $decrypted;

}

}

$key = "1234567891234567";

$data = "example";

$value = Security::encrypt($data , $key );

echo $value.'

';

echo Security::decrypt($value, $key );

Java:

代碼如下:

import javax.crypto.Cipher;

import javax.crypto.spec.SecretKeySpec;

import org.apache.commons.codec.binary.Base64;

public class Security {

public static String encrypt(String input, String key){

byte[] crypted = null;

try{

SecretKeySpec skey = new SecretKeySpec(key.getBytes(), "AES");

Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");

cipher.init(Cipher.ENCRYPT_MODE, skey);

crypted = cipher.doFinal(input.getBytes());

}catch(Exception e){

System.out.println(e.toString());

}

return new String(Base64.encodeBase64(crypted));

}

public static String decrypt(String input, String key){

byte[] output = null;

try{

SecretKeySpec skey = new SecretKeySpec(key.getBytes(), "AES");

Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");

cipher.init(Cipher.DECRYPT_MODE, skey);

output = cipher.doFinal(Base64.decodeBase64(input));

}catch(Exception e){

System.out.println(e.toString());

}

return new String(output);

}

public static void main(String[] args) {

String key = "1234567891234567";

String data = "example";

System.out.println(Security.encrypt(data, key));

System.out.println(Security.decrypt(Security.encrypt(data, key), key));

}

}

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:PHP、Java des加密解密實(shí)例
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)