Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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));
share|improve this question
Can you decrypt the data on the source server (on the one you have encrypted it)? Have you compared the data on both sides? – zerkms Dec 28 '12 at 12:04
Yes that's a good question.. I did actually. I have encrypted the data and decrypted it again. It worked fine.. I did check if the encrypted text was the same on the other server (where the API is) and yes it was just the same text, but when i decrypted it... It were really weird signs and it wasn't the original text anymore. – Paul Oostenrijk Dec 28 '12 at 12:08
@PaulOostenrijk Please show the code you used to encrypt the data on the client and the code used to decrypt it on the server. I suspect you are using the wrong key at the server end to decrypt. Please note that - as long as you do not show your key (!!) - showing the code should not be a security risk for you application. – DaveRandom Dec 28 '12 at 12:22
@DaveRandom I added the code to the post. – Paul Oostenrijk Dec 28 '12 at 12:26
You need to use the same IV to decrypt that was used to encrypt. The IV does not need to be kept secret, it can be safely sent with the data as long as the key is secret. Also you should look at using mcrypt_get_iv_size() to determine the size of the IV you create. – DaveRandom Dec 28 '12 at 12:32
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.