convert php mcrypt_encrypt MCRYPT_3DES to Java

1.6k views Asked by At

I have code in PHP

$res = strtoupper(bin2hex(mcrypt_encrypt(MCRYPT_3DES, $this->hex2str($key), $this->hex2str($data), MCRYPT_MODE_ECB)));

public function hex2str($data) { 
      $len = strlen($data); 
      $res = pack("H" . $len, $data);
      return $res; 
} 

I try to create in java version.
Java code :

private String doEncrypt3DES(String key, String data) throws Exception{
        SecretKey secretKey;
        byte[] keyValue;
        Cipher c;

        keyValue = Hex.decodeHex(key.toCharArray());
        DESedeKeySpec keySpec = new DESedeKeySpec(keyValue);
        secretKey = SecretKeyFactory.getInstance("DESede").generateSecret(keySpec);

        // Create the cipher
        c = Cipher.getInstance("DESede/ECB/NoPadding");

        c.init(Cipher.ENCRYPT_MODE, secretKey);
        byte[] text = data.getBytes("utf-8"); // Base64.decodeBase64(data);
        byte[] textEncrypt = c.doFinal(text);
        String hex = bytesToHex(textEncrypt);
        return hex;
}

But they got different result. Can you help me to fix java code?
data : CED0CF172E8AC451B39FC746C5339F29

key : 436C6561724B657944657632536E724D436C6561724B6579

1

There are 1 answers

4
Zed Lee On BEST ANSWER

Use hex decode and not utf-8 decode to data.