db0850c3b6
This adds a small EC library that is capable of verifying a signature of SHA256 with ECDSA on the NIST P-256 curve. Change-Id: I2a16639c92a77e8e4783c47ffbc56676de56eb59
15 lines
383 B
Makefile
15 lines
383 B
Makefile
# Copyright 2013 The Android Open Source Project
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := rsa_test
|
|
LOCAL_SRC_FILES := rsa_test.c
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt
|
|
include $(BUILD_HOST_NATIVE_TEST)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := ecdsa_test
|
|
LOCAL_SRC_FILES := ecdsa_test.c
|
|
LOCAL_STATIC_LIBRARIES := libmincrypt
|
|
include $(BUILD_HOST_NATIVE_TEST)
|