Skip to content

Commit

Permalink
point developers to cacheword for password management
Browse files Browse the repository at this point in the history
  • Loading branch information
eighthave committed Sep 5, 2014
1 parent b4ed3cd commit a4407c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ virtual disks for Android. This app aims to show the most basic working
examples of how to use IOCipher for learning the basics. It does not show
best practices for things like password management.

IOCipher was designed to be used with the CacheWord library for password/key
management:
https://github.com/guardianproject/cacheword

Please report bugs here:
https://dev.guardianproject.info/projects/iocipher/issues
Expand Down
6 changes: 5 additions & 1 deletion src/info/guardianproject/iocipherexample/FileBrowser.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ public void onCreate(Bundle savedInstanceState) {
@Override
protected void onResume() {
super.onResume();
// TODO don't use a hard-coded password! prompt for the password
/*
* do NOT use a hard-coded password! Either prompt the user for the
* password, or use the CacheWord library to handle password prompting
* and caching. https://github.com/guardianproject/cacheword
*/
if (!vfs.isMounted())
vfs.mount("my fake password");

Expand Down

0 comments on commit a4407c5

Please sign in to comment.