mbedtls: package version 2.0, make polarssl compatible
Signed-off-by: Steven Barth <steven@midlink.org> SVN-Revision: 46484
This commit is contained in:
		
							
								
								
									
										69
									
								
								package/libs/mbedtls/Makefile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										69
									
								
								package/libs/mbedtls/Makefile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,69 @@ | ||||
| #  | ||||
| # Copyright (C) 2011-2015 OpenWrt.org | ||||
| # | ||||
| # This is free software, licensed under the GNU General Public License v2. | ||||
| # See /LICENSE for more information. | ||||
| # | ||||
|  | ||||
| include $(TOPDIR)/rules.mk | ||||
|  | ||||
| PKG_NAME:=mbedtls | ||||
| PKG_VERSION:=2.0.0 | ||||
| PKG_RELEASE:=1 | ||||
| PKG_USE_MIPS16:=0 | ||||
|  | ||||
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz | ||||
| PKG_SOURCE_URL:=https://tls.mbed.org/download/ | ||||
| PKG_MD5SUM:=6b8246a19a7a77737856e729cc8a0952 | ||||
|  | ||||
| PKG_BUILD_PARALLEL:=1 | ||||
| PKG_LICENSE:=GPL-2.0+ | ||||
|  | ||||
| include $(INCLUDE_DIR)/package.mk | ||||
| include $(INCLUDE_DIR)/cmake.mk | ||||
|  | ||||
| define Package/mbedtls/Default | ||||
|   SUBMENU:=SSL | ||||
|   TITLE:=Embedded SSL | ||||
|   URL:=https://tls.mbed.org | ||||
| endef | ||||
|  | ||||
| define Package/mbedtls/Default/description | ||||
| The aim of the mbedtls project is to provide a quality, open-source | ||||
| cryptographic library written in C and targeted at embedded systems. | ||||
| endef | ||||
|  | ||||
| define Package/libmbedtls | ||||
| $(call Package/mbedtls/Default) | ||||
|   SECTION:=libs | ||||
|   CATEGORY:=Libraries | ||||
|   TITLE+= (library) | ||||
|   ABI_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE) | ||||
| endef | ||||
|  | ||||
| define Package/libmbedtls/description | ||||
| $(call Package/mbedtls/Default/description) | ||||
| This package contains the mbedtls library. | ||||
| endef | ||||
|  | ||||
| PKG_INSTALL:=1 | ||||
|  | ||||
| CMAKE_OPTIONS += \ | ||||
| 	-DCMAKE_BUILD_TYPE:String="Release" \ | ||||
| 	-DUSE_SHARED_MBEDTLS_LIBRARY:Bool=ON \ | ||||
| 	-DENABLE_TESTING:Bool=OFF \ | ||||
| 	-DENABLE_PROGRAMS:Bool=OFF \ | ||||
|  | ||||
| define Build/InstallDev | ||||
| 	$(INSTALL_DIR) $(1)/usr/include | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/include/mbedtls $(1)/usr/include/ | ||||
| 	$(INSTALL_DIR) $(1)/usr/lib | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/ | ||||
| endef | ||||
|  | ||||
| define Package/libmbedtls/install | ||||
| 	$(INSTALL_DIR) $(1)/usr/lib | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*.so* $(1)/usr/lib/ | ||||
| endef | ||||
|  | ||||
| $(eval $(call BuildPackage,libmbedtls)) | ||||
							
								
								
									
										235
									
								
								package/libs/mbedtls/patches/200-config.patch
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										235
									
								
								package/libs/mbedtls/patches/200-config.patch
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,235 @@ | ||||
| --- a/include/mbedtls/config.h | ||||
| +++ b/include/mbedtls/config.h | ||||
| @@ -181,7 +181,7 @@ | ||||
|   * | ||||
|   * Uncomment to get errors on using deprecated functions. | ||||
|   */ | ||||
| -//#define MBEDTLS_DEPRECATED_REMOVED | ||||
| +#define MBEDTLS_DEPRECATED_REMOVED | ||||
|   | ||||
|  /* \} name SECTION: System support */ | ||||
|   | ||||
| @@ -320,7 +320,7 @@ | ||||
|   * | ||||
|   * Enable Cipher Feedback mode (CFB) for symmetric ciphers. | ||||
|   */ | ||||
| -#define MBEDTLS_CIPHER_MODE_CFB | ||||
| +//#define MBEDTLS_CIPHER_MODE_CFB | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_CIPHER_MODE_CTR | ||||
| @@ -413,13 +413,13 @@ | ||||
|   * | ||||
|   * Comment macros to disable the curve and functions for it | ||||
|   */ | ||||
| -#define MBEDTLS_ECP_DP_SECP192R1_ENABLED | ||||
| -#define MBEDTLS_ECP_DP_SECP224R1_ENABLED | ||||
| +//#define MBEDTLS_ECP_DP_SECP192R1_ENABLED | ||||
| +//#define MBEDTLS_ECP_DP_SECP224R1_ENABLED | ||||
|  #define MBEDTLS_ECP_DP_SECP256R1_ENABLED | ||||
|  #define MBEDTLS_ECP_DP_SECP384R1_ENABLED | ||||
|  #define MBEDTLS_ECP_DP_SECP521R1_ENABLED | ||||
| -#define MBEDTLS_ECP_DP_SECP192K1_ENABLED | ||||
| -#define MBEDTLS_ECP_DP_SECP224K1_ENABLED | ||||
| +//#define MBEDTLS_ECP_DP_SECP192K1_ENABLED | ||||
| +//#define MBEDTLS_ECP_DP_SECP224K1_ENABLED | ||||
|  #define MBEDTLS_ECP_DP_SECP256K1_ENABLED | ||||
|  #define MBEDTLS_ECP_DP_BP256R1_ENABLED | ||||
|  #define MBEDTLS_ECP_DP_BP384R1_ENABLED | ||||
| @@ -435,7 +435,7 @@ | ||||
|   * | ||||
|   * Comment this macro to disable NIST curves optimisation. | ||||
|   */ | ||||
| -#define MBEDTLS_ECP_NIST_OPTIM | ||||
| +//#define MBEDTLS_ECP_NIST_OPTIM | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_ECDSA_DETERMINISTIC | ||||
| @@ -443,7 +443,7 @@ | ||||
|   * Enable deterministic ECDSA (RFC 6979). | ||||
|   * Standard ECDSA is "fragile" in the sense that lack of entropy when signing | ||||
|   * may result in a compromise of the long-term signing key. This is avoided by | ||||
| - * the deterministic variant. | ||||
| +       DH	* the deterministic variant. | ||||
|   * | ||||
|   * Requires: MBEDTLS_HMAC_DRBG_C | ||||
|   * | ||||
| @@ -495,7 +495,7 @@ | ||||
|   *      MBEDTLS_TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA | ||||
|   *      MBEDTLS_TLS_DHE_PSK_WITH_RC4_128_SHA | ||||
|   */ | ||||
| -#define MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED | ||||
| +//#define MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED | ||||
| @@ -540,7 +540,7 @@ | ||||
|   *      MBEDTLS_TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA | ||||
|   *      MBEDTLS_TLS_RSA_PSK_WITH_RC4_128_SHA | ||||
|   */ | ||||
| -#define MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED | ||||
| +//#define MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_KEY_EXCHANGE_RSA_ENABLED | ||||
| @@ -594,7 +594,7 @@ | ||||
|   *      MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA | ||||
|   *      MBEDTLS_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA | ||||
|   */ | ||||
| -#define MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED | ||||
| +//#define MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED | ||||
| @@ -667,7 +667,7 @@ | ||||
|   *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 | ||||
|   *      MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 | ||||
|   */ | ||||
| -#define MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED | ||||
| +//#define MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED | ||||
| @@ -691,7 +691,7 @@ | ||||
|   *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 | ||||
|   *      MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 | ||||
|   */ | ||||
| -#define MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED | ||||
| +//#define MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_PK_PARSE_EC_EXTENDED | ||||
| @@ -810,7 +810,7 @@ | ||||
|   * | ||||
|   * Comment this macro to disable support for external private RSA keys. | ||||
|   */ | ||||
| -#define MBEDTLS_PK_RSA_ALT_SUPPORT | ||||
| +//#define MBEDTLS_PK_RSA_ALT_SUPPORT | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_PKCS1_V15 | ||||
| @@ -842,14 +842,14 @@ | ||||
|   * Uncomment this macro to disable the use of CRT in RSA. | ||||
|   * | ||||
|   */ | ||||
| -//#define MBEDTLS_RSA_NO_CRT | ||||
| +#define MBEDTLS_RSA_NO_CRT | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_SELF_TEST | ||||
|   * | ||||
|   * Enable the checkup functions (*_self_test). | ||||
|   */ | ||||
| -#define MBEDTLS_SELF_TEST | ||||
| +//#define MBEDTLS_SELF_TEST | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_SHA256_SMALLER | ||||
| @@ -865,7 +865,7 @@ | ||||
|   * | ||||
|   * Uncomment to enable the smaller implementation of SHA256. | ||||
|   */ | ||||
| -//#define MBEDTLS_SHA256_SMALLER | ||||
| +#define MBEDTLS_SHA256_SMALLER | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_SSL_AEAD_RANDOM_IV | ||||
| @@ -1038,7 +1038,7 @@ | ||||
|   * | ||||
|   * Comment this macro to disable support for SSL 3.0 | ||||
|   */ | ||||
| -#define MBEDTLS_SSL_PROTO_SSL3 | ||||
| +//#define MBEDTLS_SSL_PROTO_SSL3 | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_SSL_PROTO_TLS1 | ||||
| @@ -1176,7 +1176,7 @@ | ||||
|   * | ||||
|   * Comment this macro to disable support for truncated HMAC in SSL | ||||
|   */ | ||||
| -#define MBEDTLS_SSL_TRUNCATED_HMAC | ||||
| +//#define MBEDTLS_SSL_TRUNCATED_HMAC | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_THREADING_ALT | ||||
| @@ -1410,7 +1410,7 @@ | ||||
|   *      MBEDTLS_TLS_RSA_PSK_WITH_RC4_128_SHA | ||||
|   *      MBEDTLS_TLS_PSK_WITH_RC4_128_SHA | ||||
|   */ | ||||
| -#define MBEDTLS_ARC4_C | ||||
| +//#define MBEDTLS_ARC4_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_ASN1_PARSE_C | ||||
| @@ -1475,7 +1475,7 @@ | ||||
|   * | ||||
|   * Module:  library/blowfish.c | ||||
|   */ | ||||
| -#define MBEDTLS_BLOWFISH_C | ||||
| +//#define MBEDTLS_BLOWFISH_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_CAMELLIA_C | ||||
| @@ -1530,7 +1530,7 @@ | ||||
|   *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 | ||||
|   *      MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 | ||||
|   */ | ||||
| -#define MBEDTLS_CAMELLIA_C | ||||
| +//#define MBEDTLS_CAMELLIA_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_CCM_C | ||||
| @@ -1544,7 +1544,7 @@ | ||||
|   * This module enables the AES-CCM ciphersuites, if other requisites are | ||||
|   * enabled as well. | ||||
|   */ | ||||
| -#define MBEDTLS_CCM_C | ||||
| +//#define MBEDTLS_CCM_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_CERTS_C | ||||
| @@ -1556,7 +1556,7 @@ | ||||
|   * | ||||
|   * This module is used for testing (ssl_client/server). | ||||
|   */ | ||||
| -#define MBEDTLS_CERTS_C | ||||
| +//#define MBEDTLS_CERTS_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_CIPHER_C | ||||
| @@ -1596,7 +1596,7 @@ | ||||
|   * | ||||
|   * This module provides debugging functions. | ||||
|   */ | ||||
| -#define MBEDTLS_DEBUG_C | ||||
| +//#define MBEDTLS_DEBUG_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_DES_C | ||||
| @@ -1636,7 +1636,7 @@ | ||||
|   * This module is used by the following key exchanges: | ||||
|   *      DHE-RSA, DHE-PSK | ||||
|   */ | ||||
| -#define MBEDTLS_DHM_C | ||||
| +//#define MBEDTLS_DHM_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_ECDH_C | ||||
| @@ -2026,7 +2026,7 @@ | ||||
|   * Caller:  library/mbedtls_md.c | ||||
|   * | ||||
|   */ | ||||
| -#define MBEDTLS_RIPEMD160_C | ||||
| +//#define MBEDTLS_RIPEMD160_C | ||||
|   | ||||
|  /** | ||||
|   * \def MBEDTLS_RSA_C | ||||
| @@ -2324,7 +2324,7 @@ | ||||
|   * Module:  library/xtea.c | ||||
|   * Caller: | ||||
|   */ | ||||
| -#define MBEDTLS_XTEA_C | ||||
| +//#define MBEDTLS_XTEA_C | ||||
|   | ||||
|  /* \} name SECTION: mbed TLS modules */ | ||||
|   | ||||
| @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk | ||||
|  | ||||
| PKG_NAME:=mbedtls | ||||
| PKG_VERSION:=1.3.11 | ||||
| PKG_RELEASE:=1 | ||||
| PKG_RELEASE:=2 | ||||
| PKG_USE_MIPS16:=0 | ||||
|  | ||||
| PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-gpl.tgz | ||||
| @@ -58,14 +58,14 @@ define Build/InstallDev | ||||
| 	$(INSTALL_DIR) $(1)/usr/include | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/include/polarssl $(1)/usr/include/ | ||||
| 	$(INSTALL_DIR) $(1)/usr/lib | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmbedtls.so* $(1)/usr/lib/ | ||||
| 	$(LN) libmbedtls.so $(1)/usr/lib/libpolarssl.so | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmbedtls.so.* $(1)/usr/lib/ | ||||
| 	$(LN) libmbedtls.so.$(PKG_VERSION) $(1)/usr/lib/libpolarssl.so | ||||
| endef | ||||
|  | ||||
| define Package/libpolarssl/install | ||||
| 	$(INSTALL_DIR) $(1)/usr/lib | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmbedtls.so* $(1)/usr/lib/ | ||||
| 	$(LN) libmbedtls.so $(1)/usr/lib/libpolarssl.so | ||||
| 	$(CP) $(PKG_INSTALL_DIR)/usr/lib/libmbedtls.so.* $(1)/usr/lib/ | ||||
| 	$(LN) libmbedtls.so.$(PKG_VERSION) $(1)/usr/lib/libpolarssl.so | ||||
| endef | ||||
|  | ||||
| $(eval $(call BuildPackage,libpolarssl)) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Steven Barth
					Steven Barth