0

I am looking for AES encryption library for blackberry 7. i got this link for android and ios https://github.com/Pakhee/Cross-platform-AES-encryption but i am not able to find out for j2me blackberry.Please can anyone who has done this type of library with blackberry or who has this library please share it and it would be very helpfull for me .

thank you

AVINASH KANNA
  • 617
  • 1
  • 5
  • 11
  • can anyone tell me how to integrate this in j2me blackerry or is there any other alternative. – AVINASH KANNA Jan 12 '15 at 09:11
  • google for **bouncy castle** framework. And check this link: http://stackoverflow.com/questions/4243650/aes-encryption-decryption-with-bouncycastle-example-in-j2me –  Jan 16 '15 at 09:55

1 Answers1

0

Why not use Blackberry's own net.rim.device.api.crypto package?

Ales
  • 168
  • 9
  • @alex: thank you for response.Yes you are right but as my application doing multiplatform app and others android and ios developers are completed with this library interation https://github.com/Pakhee/Cross-platform-AES-encryption but for bb7 this lib is not available.do you know how can we solve this – AVINASH KANNA Feb 04 '15 at 12:05
  • The library is just one class with a few methods, less than 300 lines including verbose comments, so it should be easy to write another implementation with exactly the same methods but using Blackberry crypto API instead of javax.crypto. – Ales Feb 06 '15 at 00:04
  • ya thats wat i am thinking about but if you have checked the java class from that library the code consists of j2se code where blackberry doesnt support and i tried using bouncy castle couple of times but failed to execute that and i didnt find any other alternative to implement the same as like in library. – AVINASH KANNA Feb 06 '15 at 05:39