I'm working on a API that can receive and send information for parcels in the transport world. Well, everything looks nice... the Curl is working and the POST variables are all set and ready.
But I have one problem. I want to encrypt the parcel data in the curl request. I did this with an script that uses the mcrypt function and the RIJNDAEL cipher. The only problem is that when I send the encrypted data to the server and decode it in my API. The encryption is invalid and I can't decrypt it anymore to the original state.
I think it's because I'm sending it to an other server with other specs and software. That's why it couldn't get decrypted. Well my question to you guys is:
Is there a way to encrypt the API data without using SSL?
I hope that someone has a answer to my question. I have a hard time figuring out cryptography.
Encryption class on the API side
<?php
class Encryption {
private $securekey, $iv;
function __construct() {
$this->iv = mcrypt_create_iv(32);
}
function setKey($key) {
$this->securekey = hash('sha256',$key,TRUE);
}
function encode($input) {
return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->securekey, $input, MCRYPT_MODE_ECB, $this->iv));
}
function decode($input) {
return trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->securekey, base64_decode($input), MCRYPT_MODE_ECB, $this->iv));
}
}
?>
Same class on the sender side, but with other classname (Magento btw)
class Sendcloud_Transporter_Helper_Encryption {
private $securekey, $iv;
function __construct() {
$this->iv = mcrypt_create_iv(128);
}
function setKey($key) {
$this->securekey = hash('sha256',$key,TRUE);
}
function encode($input) {
return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->securekey, $input, MCRYPT_MODE_ECB, $this->iv));
}
function decode($input) {
return trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $this->securekey, base64_decode($input), MCRYPT_MODE_ECB, $this->iv));
}
}
?>
The code on the API side to unlock.
//set key of encryption class
$encryption->setKey($user->getSecret_key());
// check if data is setted. When it's not show a error that's there is no information
if ($data) {
// get the data.. Set the json to an array
$data = json_decode($encryption->decode($data));
The sender encryption code:
$encryption->setKey($this->private_key);
$orders = $encryption->encode(json_encode($this->parcels));
mcrypt_get_iv_size()to determine the size of the IV you create. – DaveRandom Dec 28 '12 at 12:32