tags:

views:

282

answers:

2

Hi i am sending password text to the http service request object.like pass.text 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? please Help me in this very urgent.

+1  A: 

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

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

Christopher W. Allen-Poole
+1  A: 

try a simple hashing, there are quite a few algorithms in the corelib in the google repository http://code.google.com/p/as3corelib/ (see the crypto section).

shortstick