8e5b63d045
- adds a library to compute the SHA-256 hash
- updates the RSA verifier to take an argument specifying either SHA-1
or SHA-256
- updates DumpPublicKey to with new "key" version numbers for
specifying SHA-256
- adds new argument to adb auth code to maintain existing behavior
(cherry picked from commit 515e1639ef
)
Change-Id: Ib35643b3d864742e817ac6e725499b451e45afcf
18 lines
465 B
Makefile
18 lines
465 B
Makefile
# Copyright 2008 The Android Open Source Project
|
|
#
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libmincrypt
|
|
LOCAL_SRC_FILES := rsa.c rsa_e_3.c rsa_e_f4.c sha.c sha256.c
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libmincrypt
|
|
LOCAL_SRC_FILES := rsa.c rsa_e_3.c rsa_e_f4.c sha.c sha256.c
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
|
|
# TODO: drop the hyphen once these are checked in
|
|
include $(LOCAL_PATH)/tools/Android.mk
|