Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am very new to cryptography, i have implmented an AES encryption on the arduino, which in turn use an AES CBC library. can be found at .

http://arduino.cc/forum/index.php/topic,88890.0.html

--- the input are

byte key[] = 
{
  0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
} ;

byte plain[] =
{
    0x01, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
} ;

byte my_iv[] = 
{
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
} ;

The output is 0ee99aa45cc9861436582abac3dac2fb

The output is transfered via xbee to the computer and decrypted using java program . The above hexstring is transfered as decimal values via xbee .

I have converted the decimal into hex and finally into byte and fed to decrypt function.. the decrypted values doesn't match the input hex value given above i.e

package com.rapplogic.xbee.examples.zigbee;
import java.sql.*;
import java.security.*;
//import java.net.*;  
//import java.io.*;  

//import java.security.spec.InvalidKeySpecException;
import java.util.Arrays;

import javax.crypto.*;
import javax.crypto.spec.SecretKeySpec;
import java.net.*;  
import java.io.*;  

import sun.misc.*;
class testobject implements Serializable {  

int property1[];
//byte moteid[];
public  testobject(int p1[]){  
this.property1=p1;  
 //this.moteid= p2;
}  
}  



public class SimpleServer  { 
    private static final String ALGO = "AES";
    private static final byte[] keyValue = 


            //Please change the key as u want..


            new byte[] { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };

    public static byte[] hex2Byte(String str)
    {
       byte[] bytes = new byte[str.length() / 2];
       for (int i = 0; i < bytes.length; i++)
       {
          bytes[i] = (byte) Integer
                .parseInt(str.substring(2 * i, 2 * i + 2), 16);
       }
       return bytes;
    }

    public static String byte2hex(byte[] b)
    {

     // String Buffer can be used instead 

       String hs = "";
       String stmp = "";

       for (int n = 0; n < b.length; n++)
       {
          stmp = (java.lang.Integer.toHexString(b[n] & 0XFF));

          if (stmp.length() == 1)
          {
             hs = hs + "0" + stmp;
          }
          else
          {
             hs = hs + stmp;
          }

          if (n < b.length - 1)
          {
             hs = hs + "";
          }
       }

       return hs;
    }

    public static byte[] decrypt(byte encryptedData[]) throws Exception {
        for (int i =0;i<16;i++){
            System.out.printf("%02X",encryptedData[i]); 
        }
        System.out.println(keyValue);
        Key key = generateKey();
        Cipher c = Cipher.getInstance("AES/ECB/NoPadding");
        c.init(Cipher.DECRYPT_MODE, key);
        byte[] decValue = c.doFinal(encryptedData);
        System.out.println(decValue);
        return decValue;
    }
    private static Key generateKey() throws Exception {
        Key key = new SecretKeySpec(keyValue, ALGO);
        return key;
}


public static void main(String args[]) throws IOException {  
int port = 1905;  
//String location=null;
ServerSocket ss=null;
Socket s=null;
InputStream is=null;
int pr1=0;
int pr2=0;
int moid=0;
int pr3=0;
String location=null;


try {

ss = new ServerSocket(port);  

for(;;)
{
Thread.sleep(100);
s = ss.accept();  
is = s.getInputStream();
System.out.println("socket connected");
ObjectInputStream ois = new ObjectInputStream(is);  
testobject to = (testobject)ois.readObject();

if (to!=null)
{

int pro1[]=to.property1;
//String pro2=to.moteid;        
// Printing pro1 for debugging to check if it matches with the encrypted text
int i = 0;  
for (i=0; i<16; i++)
{
System.out.println(pro1[i]);
}

String strNumbers = "";// initialising to empty string, compulsary need to initialise

for ( i=0; i<16; i++ )
{
String hex = Integer.toHexString(pro1[i]);
        if(hex.length()<2){
            hex="0"+hex;
            }
System.out.println(hex);

strNumbers = strNumbers + hex ;
}
byte encry [] = SimpleServer.hex2Byte(strNumbers);


//System.out.println(pro1);

System.out.println(strNumbers);
byte passwordDec[] = SimpleServer.decrypt(encry);
//String passwordDec1 = SimpleServer.decrypt(pro2);
//int proper1 = Integer.parseInt(pro1);
//int mottid = Integer.parseInt(pro2);

String ab = SimpleServer.byte2hex(passwordDec);
      //  System.out.println("Plain Text : " + password);
     //   System.out.println("Encrypted Text : " + passwordEnc);
  System.out.println("Decrypted Text : " + ab);

//System.out.println("moteid=" +mottid+ "\nproperty1=" +proper1);
//Connection con = null;

}
}
}
catch(Exception e)
{
    System.out.println(e);
}



finally{
    s.close();  
    ss.close();
}
}
}

The decrypted values doesn't match the input hex value shown above i.e0x01, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 . Any help would be really helpful in this matter.

share|improve this question
You are trying to do a lot here. First, just get the encryption/decryption part working without the serialisation. Only when you can encrypt/decrypt correctly should you introduce serialisation. You are defining an IV, and using ECB mode. ECB is insecure, and doesn't need an IV. Did you intend to use CBC mode, which requires an IV and is much more secure? – rossum Jun 12 '12 at 11:54

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.