Skip to content

Commit

Permalink
Prebuilt OpenSSL 1.0.2m for CrystaX version b1028
Browse files Browse the repository at this point in the history
  • Loading branch information
cawka committed Nov 13, 2017
1 parent c430009 commit 2a6e102
Show file tree
Hide file tree
Showing 134 changed files with 171 additions and 389 deletions.
52 changes: 0 additions & 52 deletions 1.0.2h/Android.mk

This file was deleted.

273 changes: 0 additions & 273 deletions 1.0.2h/include/openssl/opensslconf_armeabi.h

This file was deleted.

Binary file removed 1.0.2h/libs/arm64-v8a/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/arm64-v8a/libssl.a
Binary file not shown.
Binary file removed 1.0.2h/libs/arm64-v8a/libssl.so
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi-v7a-hard/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi-v7a-hard/libssl.so
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi-v7a/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi-v7a/libssl.so
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi/libcrypto.a
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi/libssl.a
Binary file not shown.
Binary file removed 1.0.2h/libs/armeabi/libssl.so
Binary file not shown.
Binary file removed 1.0.2h/libs/mips/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/mips/libssl.so
Binary file not shown.
Binary file removed 1.0.2h/libs/mips64/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/mips64/libssl.a
Binary file not shown.
Binary file removed 1.0.2h/libs/mips64/libssl.so
Binary file not shown.
Binary file removed 1.0.2h/libs/x86/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/x86/libssl.so
Binary file not shown.
Binary file removed 1.0.2h/libs/x86_64/libcrypto.so
Binary file not shown.
Binary file removed 1.0.2h/libs/x86_64/libssl.so
Binary file not shown.
21 changes: 11 additions & 10 deletions 1.0.1p/Android.mk → 1.0.2m/Android.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2011-2015 CrystaX.
# Copyright (c) 2011-2017 CrystaX.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification, are
Expand Down Expand Up @@ -28,25 +28,26 @@
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := opencrypto_shared
LOCAL_MODULE := libcrypto_static
LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libcrypto.a
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
include $(PREBUILT_STATIC_LIBRARY)

include $(CLEAR_VARS)
LOCAL_MODULE := libcrypto_shared
LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libcrypto.so
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
include $(PREBUILT_SHARED_LIBRARY)

include $(CLEAR_VARS)
LOCAL_MODULE := opencrypto_static
LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libcrypto.a
LOCAL_MODULE := libssl_static
LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libssl.a
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
include $(PREBUILT_STATIC_LIBRARY)

include $(CLEAR_VARS)
LOCAL_MODULE := openssl_shared
LOCAL_MODULE := libssl_shared
LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libssl.so
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
include $(PREBUILT_SHARED_LIBRARY)

include $(CLEAR_VARS)
LOCAL_MODULE := openssl_static
LOCAL_SRC_FILES := libs/$(TARGET_ARCH_ABI)/libssl.a
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/include
include $(PREBUILT_STATIC_LIBRARY)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions 1.0.2h/include/openssl/bio.h → 1.0.2m/include/openssl/bio.h
Original file line number Diff line number Diff line change
Expand Up @@ -559,11 +559,11 @@ int BIO_read_filename(BIO *b, const char *name);
# define BIO_get_ssl(b,sslp) BIO_ctrl(b,BIO_C_GET_SSL,0,(char *)sslp)
# define BIO_set_ssl_mode(b,client) BIO_ctrl(b,BIO_C_SSL_MODE,client,NULL)
# define BIO_set_ssl_renegotiate_bytes(b,num) \
BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL);
BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL)
# define BIO_get_num_renegotiates(b) \
BIO_ctrl(b,BIO_C_GET_SSL_NUM_RENEGOTIATES,0,NULL);
BIO_ctrl(b,BIO_C_GET_SSL_NUM_RENEGOTIATES,0,NULL)
# define BIO_set_ssl_renegotiate_timeout(b,seconds) \
BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL);
BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL)

/* defined in evp.h */
/* #define BIO_set_md(b,md) BIO_ctrl(b,BIO_C_SET_MD,1,(char *)md) */
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions 1.0.2h/include/openssl/bn.h → 1.0.2m/include/openssl/bn.h
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,8 @@ int RAND_pseudo_bytes(unsigned char *buf, int num);
if (*(ftl--)) break; \
(a)->top = tmp_top; \
} \
if ((a)->top == 0) \
(a)->neg = 0; \
bn_pollute(a); \
}

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 2a6e102

Please sign in to comment.