summaryrefslogtreecommitdiffstats
path: root/cmds/keystore/Android.mk
diff options
context:
space:
mode:
authorChung-yih Wang <cywang@google.com>2009-06-29 03:12:56 +0800
committerChung-yih Wang <cywang@google.com>2009-07-02 14:08:20 +0800
commitc186c66a297ec036b3c3dc2ba43553096a753f3f (patch)
tree67fb6a498d1adde5cc7ca6be1059cb65ac1a410b /cmds/keystore/Android.mk
parentce6d17210750258ac990cbd13bfeaf9252cf2bb5 (diff)
downloadframeworks_native-c186c66a297ec036b3c3dc2ba43553096a753f3f.zip
frameworks_native-c186c66a297ec036b3c3dc2ba43553096a753f3f.tar.gz
frameworks_native-c186c66a297ec036b3c3dc2ba43553096a753f3f.tar.bz2
Implement the generic mini-keystore for security.
1. We will progressively migrate to this implementation. 2. For richc to have a quick review on the keymgmt part. 3. Add remove_key and make sure all functions are working. 4. Add permission check for get operation. 5. Return the retry count if unlock failed. 6. Add the reset operation for keystore reset. 7. Add the putfile shell command for putting the key value from file. 8. Fix the boundary issue during parsing command. 9. Use the ' ' as delimiter and reset the reply structure for each request. 10. Add change password retry count check. 11. Extract the read_marshal/write_marshal for certtool.h. 12. Remove the old implementation.
Diffstat (limited to 'cmds/keystore/Android.mk')
-rw-r--r--cmds/keystore/Android.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/cmds/keystore/Android.mk b/cmds/keystore/Android.mk
index 20f4adf..3daf44e 100644
--- a/cmds/keystore/Android.mk
+++ b/cmds/keystore/Android.mk
@@ -4,13 +4,14 @@ LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
- keystore.c commands.c
+ netkeystore.c keymgmt.c
LOCAL_C_INCLUDES := \
- $(call include-path-for, system-core)/cutils
+ $(call include-path-for, system-core)/cutils \
+ external/openssl/include
LOCAL_SHARED_LIBRARIES := \
- libcutils
+ libcutils libssl
LOCAL_STATIC_LIBRARIES :=