c38a8aa699
1) Generate a Curve25519 identity key. 2) Use Curve25519 ephemerals and identities for v2 3DHE agreements. 3) Initiate v2 key exchange messages. 4) Accept v1 key exchange messages. 5) TOFU Curve25519 identities.
17 lines
No EOL
340 B
Makefile
17 lines
No EOL
340 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libcurve25519-donna
|
|
LOCAL_SRC_FILES := curve25519-donna.c
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libcurve25519
|
|
LOCAL_SRC_FILES := curve25519-donna-jni.c
|
|
|
|
LOCAL_STATIC_LIBRARIES := libcurve25519-donna
|
|
|
|
include $(BUILD_SHARED_LIBRARY) |