The e=3 and e=65537 implementations are nearly identical, refactor them down into one. Change-Id: I537a368a6cc195f373b9354d7472957fd683beea
10 lines
229 B
Makefile
10 lines
229 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_EXECUTABLE)
|
|
|