a master password that decrypts the master key. The master key is used
to encrypt/decrypt the password entries.
Database is now version 3. No upgrade path provided, user must export/import.
+0.7.0 [Jan 16, 2009]
+ Rename APWS to OI Safe.
+
\ No newline at end of file
To grab the database to work with it locally::
-adb pull /data/data/com.bitsetters.android.passwordsafe/databases/passwordsafe .
+adb pull /data/data/org.openintents.safe/databases/safe .
Then to open it with sqlite3::
-sqlite3 passwordsafe
+sqlite3 safe
To delete the database and force a clean start::
-adb shell rm /data/data/com.bitsetters.android.passwordsafe/databases/passwordsafe
+adb shell rm /data/data/org.openintents.safe/databases/safe
To uninstall the application completely::
-adb uninstall com.bitsetters.android.passwordsafe
+adb uninstall org.openintents.safe
To make the keyword Id update::
-svn propset svn:keywords Id src/com/bitsetters/android/passwordsafe/filename.java
+svn propset svn:keywords Id org/openintents/safe/filename.java
<string name="notify_blank_desc">Description cannot be blank</string>\r
<string name="notify_blank_name">Name cannot be blank</string>\r
<string name="first_time">Please enter a password below, which will be used to keep your passwords safe.</string>\r
- <string name="logoff_explanation">You are currently logged into Android Passwordsafe, meaning that other applications can request their passwords and decrypt/encrypt data. Lock to prevent further access until you type in your password again.</string>\r
+ <string name="logoff_explanation">You are currently logged into OI Safe, meaning that other applications can request their passwords and decrypt/encrypt data. Lock to prevent further access until you type in your password again.</string>\r
<string name="remote_ask">Another application is asking to use the master key. Please type in your password to unlock it.</string>\r
<string name="categories">Categories</string>\r
<string name="category">Category</string>\r
<string name="database_version_error_title">Database Version Error</string>\r
<string name="database_version_error_msg">Sorry, but the version of the database is not supported. You must install the version associated with this database.</string>\r
<string name="permlab_service">access stored password</string>\r
- <string name="permdesc_service">Allows the application to encrypt and decrypt text, and access the passwords stored by Android Passwordsafe.</string> \r
+ <string name="permdesc_service">Allows the application to encrypt and decrypt text, and access the passwords stored by OI Safe.</string> \r
<string name="move">Move</string>\r
<string name="move_select">Select Category</string>\r
<string name="moved_to">Moved to</string>\r
*/
public class DBHelper {
- private static final String DATABASE_NAME = "passwordsafe";
+ private static final String DATABASE_NAME = "safe";
private static final String TABLE_DBVERSION = "dbversion";
private static final String TABLE_PASSWORDS = "passwords";
private static final String TABLE_CATEGORIES = "categories";