php code:
<?php class DES { var $key; var $iv; //Offset function DES($key, $iv=0) { $this->key = $key; if($iv == 0) { $this->iv = $key; } else { $this->iv = $iv; } } //encryption function encrypt($str) { $size = mcrypt_get_block_size ( MCRYPT_DES, MCRYPT_MODE_CBC ); $str = $this->pkcs5Pad ( $str, $size ); $data=mcrypt_cbc(MCRYPT_DES, $this->key, $str, MCRYPT_ENCRYPT, $this->iv); //$data=strtoupper(bin2hex($data)); //Return capital hexadecimal string return base64_encode($data); } //Decryption function decrypt($str) { $str = base64_decode ($str); //$strBin = $this->hex2bin( strtolower($str)); $str = mcrypt_cbc(MCRYPT_DES, $this->key, $str, MCRYPT_DECRYPT, $this->iv ); $str = $this->pkcs5Unpad( $str ); return $str; } function hex2bin($hexData) { $binData = ""; for($i = 0; $i < strlen ( $hexData ); $i += 2) { $binData .= chr(hexdec(substr($hexData, $i, 2))); } return $binData; } function pkcs5Pad($text, $blocksize) { $pad = $blocksize - (strlen ( $text ) % $blocksize); return $text . str_repeat ( chr ( $pad ), $pad ); } function pkcs5Unpad($text) { $pad = ord ( $text {strlen ( $text ) - 1} ); if ($pad > strlen ( $text )) return false; if (strspn ( $text, chr ( $pad ), strlen ( $text ) - $pad ) != $pad) return false; return substr ( $text, 0, - 1 * $pad ); } } $str = 'abcd'; $key= 'asdfwef5'; $crypt = new DES($key); $mstr = $crypt->encrypt($str); $str = $crypt->decrypt($mstr); echo $str.' <=> '.$mstr; ?>
java code:
package ; import .base64.Base64; import ; import ; import ; import ; import ; import ; import ; public class Main { public static final String ALGORITHM_DES = "DES/CBC/PKCS5Padding"; /** * DES algorithm, encryption * * @param data string to be encrypted * @param key Encryption private key, length cannot be less than 8 bits * @return Encrypted byte array, generally used in combination with Base64 encoding * @throws CryptException */ public static String encode(String key,String data) throws Exception { return encode(key, ()); } /** * DES algorithm, encryption * * @param data string to be encrypted * @param key Encryption private key, length cannot be less than 8 bits * @return Encrypted byte array, generally used in combination with Base64 encoding * @throws CryptException */ public static String encode(String key,byte[] data) throws Exception { try { DESKeySpec dks = new DESKeySpec(()); SecretKeyFactory keyFactory = ("DES"); //The length of the key cannot be less than 8 bytes Key secretKey = (dks); Cipher cipher = (ALGORITHM_DES); IvParameterSpec iv = new IvParameterSpec(()); AlgorithmParameterSpec paramSpec = iv; (Cipher.ENCRYPT_MODE, secretKey,paramSpec); byte[] bytes = (data); // return byte2hex(bytes); return new String((bytes)); } catch (Exception e) { throw new Exception(e); } } /** * DES algorithm, decryption * * @param data string to be decrypted * @param key Decrypt the private key, the length cannot be less than 8 bits * @return Decrypted byte array * @throws Exception */ public static byte[] decode(String key,byte[] data) throws Exception { try { SecureRandom sr = new SecureRandom(); DESKeySpec dks = new DESKeySpec(()); SecretKeyFactory keyFactory = ("DES"); //The length of the key cannot be less than 8 bytes Key secretKey = (dks); Cipher cipher = (ALGORITHM_DES); IvParameterSpec iv = new IvParameterSpec(()); AlgorithmParameterSpec paramSpec = iv; (Cipher.DECRYPT_MODE, secretKey,paramSpec); return (data); } catch (Exception e) { throw new Exception(e); } } /** * Get the encoded value * @param key * @param data * @return * @throws Exception */ public static String decodeValue(String key,String data) { byte[] datas; String value = null; try { datas = decode(key, (())); value = new String(datas); } catch (Exception e) { value = ""; } return value; } public static void main(String[] args) throws Exception { ("Ming: abcd; secret:" + ("asdfwef5","abcd")); } }
PS: Regarding encryption technology, this site also provides the following encryption tools for your reference:
MD5 online encryption tool:http://tools./password/CreateMD5Password
Escape encryption/decryption tool:http://tools./password/escapepwd
Online SHA1 encryption tool:http://tools./password/sha1encode
Short link (short URL) online generation tool:http://tools./password/dwzcreate
Short link (short URL) online restore tool:http://tools./password/unshorturl
High-strength password generator:http://tools./password/CreateStrongPassword