views:

18

answers:

1

Passwords are one-way encrypted and will remain so, but is there a way I can easily export these crypted passwords and use in a different app?

A: 

Are you talking about moving them from one database to another? Or allowing a different application access to the same database?

Either way, sure, that's fine as long as the logic in the new app uses exactly the same hashing/encryption algorithm to check the users' entered password with the stored one.

Evernoob