How to Create a Password Manager App with Cordova

Originally published at: http://www.sitepoint.com/create-password-manager-app-cordova/

A password manager is an application that’s used to store and organize passwords. Passwords are encrypted and stored using a master password as an encryption key. Passwords are decrypted using the same master password.

In this tutorial I will show how to create a password manager app using Cordova. We will use jQuery Mobile for UI and CryptoJS for encrypting passwords.

Continue reading this article on SitePoint

Can a user reverse-engineer this app and discover the passwords? Generally, it’s not hard to open an installed app and see what’s inside.

Not possible becz the master password is not stored.

It’s not storing the password in localStorage on the device?

Master password is required to decrypt other passwords. Master password is not stored in local storage but others are stored.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.