remember me - What's the best way to save user login and password in flex? -


What is the best way to save user credentials in Flex? Local storage does not find a good place to store confidential data, because it saves information as plain text.

You must not use a browser cookie or session token to identify the user on the server For:

  1. Enters the username and password in a form in Flex and clicks the login.
  2. The server validates the credentials then adds a random (and sufficiently secure) token to the server in memory or in a database in the database. Then the server returns the token to the client.
  3. The client either saves in cookies, Tokyo, local lion objects, or just in memory. The subsequent requests include tokens.

Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -