Apache – How to encrypt password and send through httpservice in flex

apache-flex

I am sending password text to the http service request object.like <request><password>pass.text</password></request> now this password I am giving in navigate url also.but password is visibleing when load url and it is hacking.
how can I encrypt password string and send it to jsp?

Best Answer

I would use as3Crypto: https://code.google.com/archive/p/as3crypto/

That supports a large variety of both one way and two way encryption schemas.

Related Topic