Click here to Skip to main content
15,905,071 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
tell me the best algorithm for encryption
I want to encrypt sms of my mobile as it is part of my project.
I am going to use public-private key techniqe....tell me for that which will be the best algorithm.

As I want to encrypt the message for which I will create a one jar file so it can run on any java mobile.
This java software will use encryption algorithm.
So please tell me the best encryption algorithm which I can implement it.
Posted

1 solution

At the end of the day, the exact choice of algorithm is down to you.

First you will need to look at the Java Encryption names spaces to see which asymmetric algo's it supports.
You will then need to look at each of those to ensure it is supported on your chosen platform.
You will then need to look at each and see whay +/-'s exist, e.g. speed, key lengths, rounds, etc. etc.

Then go test them to see which one work well on a mobile given its memory and processor speed.

Here are some articles on J2ME security;
http://developers.sun.com/mobility/allarticles/#security[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900