How can I encrypt password and send through httpservice in 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 开发者_C百科password is visibleing when load url and it is hacking.
how can I encrypt password string and send it to jsp?
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.
try a simple hashing, there are quite a few algorithms in the corelib in https://github.com/mikechambers/as3corelib (see the crypto section).
精彩评论