java - Managing the password of an android application -
i developing secure android application! want manage password in secure way, mean don't want save password or private key. there password manager? or should generate myself?
you don't store password- login , returned token. token send future access. secures password without need encryption.
if you're more paranoid , want protect token well, use andrid keystore https://developer.android.com/training/articles/keystore.html secure private key (and generate private key on device, no need/good reason use same 1 on devices).
Comments
Post a Comment