Locker for storing passwords securely (using AES Algorithm) locally as well as on cloud.
Web app avaiable here
Android app avaiable here
The following instuctions will get you a copy of the project up and running on your local machine for development and testing purpose.
What things you need to install the software
1. Latest version of android studio should be set-up and running on your system.
2. Add Firebase to your project. (https://firebase.google.com/docs/android/setup)
3. And finally, an android device (or emulator) running on Jelly Bean or higher.
By now, you would have already downloaded the "google-services.json" file and connected your app to Firebase Server. Finally, to set the server side Authentication, Realtime Database and Storage provided by Google Firebase, follow the steps below:
- Check for the following dependencies in app-level gradle file
implementation 'com.google.firebase:firebase-core:16.0.8' implementation 'com.google.firebase:firebase-auth:16.2.1' implementation 'com.google.firebase:firebase-firestore:18.2.0' implementation 'com.google.firebase:firebase-database:16.1.0'
- Add the following database rules, in Firebase console:
{
"rules": {
// nobody can read/write the developer_master_key (for security purpose)
"developer_master_key": {
".write": false,
".read": false
},
// don't allow anyone to read from user_data section
// write is only possible if user is authenticated
"user_data": {
".write": "auth != null",
".read": false
}
}
}
- Add the following cloud firestore rules, in Firebase console:
service cloud.firestore {
match /databases/{database}/documents {
// allow a user to modify data only under his document
match /password_collections/{user_uid}/user_passwords/{password_id} {
allow read, write, delete, update: if request.auth != null && request.auth.uid == user_uid;
}
}
}
- For Authentication, "Phone" in Firebase should be enabled and also add your SHA1 certificate to firebase
Import the app to Android Studio, build the project and finally deploy it in a device (or emulator).
- Encrypted Password Storage
- Inbuilt App Lock
- Clean and Easy to use UI
- Open Source Project
- Jyotirmoy Paul - Initial work - jyotirmoy-paul