Skip to content

Commit

Permalink
Add libminshacrypt static lib
Browse files Browse the repository at this point in the history
This is a sha-only version of libmincrypt, to provide the new
SHA_hash implementation to binaries that require libcrypto_static
  • Loading branch information
rmcc committed Nov 5, 2013
1 parent 00edd9e commit 64029fb
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libmincrypt/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ LOCAL_MODULE := libmincrypt
LOCAL_SRC_FILES := rsa.c sha.c sha256.c
include $(BUILD_STATIC_LIBRARY)

## Crippled version without an RSA implementation
## to coexist with libcrypto_static and provide SHA_hash
include $(CLEAR_VARS)
LOCAL_MODULE := libminshacrypt
LOCAL_SRC_FILES := sha.c sha256.c
include $(BUILD_STATIC_LIBRARY)

include $(CLEAR_VARS)

LOCAL_MODULE := libmincrypt
Expand Down

0 comments on commit 64029fb

Please sign in to comment.