Encrypting string in javascript and decryption in java

夙愿已清 提交于 2019-12-03 16:50:20

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

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!