views:

123

answers:

3

Hi I have created AES key in java using seed mechanism and the same thing using BlackBerry. My input string for Seed is same in both of these case. But I am getting different AES. But the created AES key should be same.

Is there any online help for creating AES key using seed mechanism for BlackBerry

Thanks Deepak

+1  A: 

You have already asked this question. The answer I gave there is still the best way. I am using what is documented there to pass data between the Blackberry and a Java server program encrypted with AES. Works fine provided you follow the API documentation on each side.

Richard
A: 

You can also refer existing post:

http://stackoverflow.com/questions/861679/generate-aes-key-with-seed-value

imMobile
A: 

Hi seed mechanism in java and blackberry are not same. so u will never get same result in java and blackberry. so better create a key by yourself and send to blackberry users. they will use the key.

Thanks Sunil Kumar Sahoo

Deepak
thanks, It worked great. Your comment was useful to me. I got success.
Deepak