Kishor Sharma
Kishor Sharma

Reputation: 599

Encrypting string in javascript and decryption in java

I would like to know if someone know any library to do encryption in javascript and decryption in java. I have already tried many API, But getting not not getting same values in java.
I want public-private key encryption and hence try to use RSA. Few i have used are:

  1. http://www-cs-students.stanford.edu/~tjw/jsbn/
  2. http://ats.oka.nu/titaniumcore/js/crypto/readme.txt
  3. http://www.ohdave.com/rsa/

Few thing i checked, javascript breaks string into small chunks and then encrypt them which make cipher text different in java and javascript. I edit javascript code to use string as a whole but didn't worked.

I also tried to set charset of html page to utf-8 but it also not worked. I got success in encrypting single character string like 'K' to be encrypted and decrypted correctly which makes me think that there is problem in encrypting string in javascript by dividing it in small chunks (which i checked, but it fails with encrypting it as a whole).

my java implementation is:

BigInteger d = new BigInteger("1f3fac65c4ae222e3a3074dd4c38fbb72c0705c4bbac0385b867c12c25a44e01", 16);
BigInteger e = new BigInteger("65537");
BigInteger N = new BigInteger("b42e91fbca364cf2a125aec67ffbdab624fd401100c40ea05189ba34d1028b0d", 16);
String messageToEncrypt = "kishor";
byte [] messageByte = messageToEncrypt.getBytes();
BigInteger message = new BigInteger(messageByte);
//Encrypting and Decrypting messages
//Encrypt a message using N and e:
BigInteger ciphertext = message.modPow(e, N);
//Decrypt the message using N and d:
BigInteger plaintext = ciphertext.modPow(d, N);
byte[] plainTextByte = plaintext.toByteArray();
String decryptMessage = new String(plainTextByte);
/*System.out.println("p : " + p);
System.out.println("q : " + q);*/
System.out.println("N : " + N.toString(16));
System.out.println("e : " + e.toString(16));
System.out.println("d : " + d.toString(16));
/*System.out.println("PhiN : " + PhiN);*/
System.out.println("ciphertext : " + ciphertext.toString(16));
System.out.println("decryptMessage : " + decryptMessage);
}

Kindly let me know if it is possible as i have searched many question (in stackoverflow itself) but unable to find a solution.

Upvotes: 4

Views: 7972

Answers (3)

erickson
erickson

Reputation: 269627

RSA is a key transport mechanism. You use it to encrypt keys for symmetric algorithms. From what I’ve seen, people who are using it for anything else don't know what they are doing, and if they persist, end up building a worthless crypto system.

I've successfully inter-operated between Java and the Stanford Javascript Crypto Library. There are many other good JavaScript libraries for symmetric encryption algorithms.

Upvotes: 1

Kishor Sharma
Kishor Sharma

Reputation: 599

Hey guys i figured out the solution. In javascript, first character was skiped from being encrypted causing the problem. fixed the loop. Thanks for all your replies.

Upvotes: 0

mattnull
mattnull

Reputation: 307

Try Gibberish AES (JS Lib) https://github.com/mdp/gibberish-aes/

Upvotes: 1

Related Questions