0

My use-case is to re-create the client side(browser) manipulation such as encryption in Java program.

I could see a website uses the kony framework generate a encrypted value. Details of Kony Framework in Javascript : http://docs.kony.com/konylibrary/visualizer/viz_api_dev_guide/content/kony.crypto_functions.htm

I would like to understand do we have any equivalent java code to implement the kony crypto algorithm in java?

TikTik
  • 347
  • 2
  • 8
  • 22
  • You can find in here http://stackoverflow.com/questions/1132567/encrypt-password-in-configuration-files – Phu Duy Mar 09 '17 at 02:18
  • Thanks @PhuDuy . In that link i could an alternate encryption implementation, but i am in need of equivalent for kony crypto algorithm in java – TikTik Mar 22 '17 at 07:25

1 Answers1

0

No there is no way to achieve the same in Java. Kony Crypto APIs work only on the device side. IF you are looking forward to achieve end-to-end encryption, then you can try CryptoJS library. You can encrypt at device and send it across network and perform the decryption using Java services/preprocessor.

Link for CryptoJS Lib: https://code.google.com/p/crypto-js/

joyjophin
  • 103
  • 5