我想知道是否有人知道任何图书馆这样做在JavaScript加密和解密在Java中。 我已经尝试了很多API,但没有得到Java没有得到相同的值。
我想公私密钥加密,因此尝试使用RSA。 很少有我用如下:
- http://www-cs-students.stanford.edu/~tjw/jsbn/
- http://ats.oka.nu/titaniumcore/js/crypto/readme.txt
- http://www.ohdave.com/rsa/
几件事我检查,JavaScript的字符串分解成小块,然后进行加密,这使得在Java和JavaScript密文不同。 我编辑JavaScript代码使用字符串作为一个整体,但没有奏效。
我也试图html页面的字符集设置为UTF-8,但它也没有奏效。 我在加密单个字符串如要加密和正确解密这让我觉得有在通过除以小块(我检查加密的JavaScript字符串问题“K”得到了成功,但它无法与它加密的整个)。
我的Java实现:
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);
}
请让我知道,如果我已经搜查了许多问题(在计算器本身),但无法找到一个解决方案是可能的。