Author: hauke
Date: 2015-07-04 01:20:36 +0200 (Sat, 04 Jul 2015)
New Revision: 46168

Removed:
   trunk/package/libs/cyassl/patches/200-SSL_accept-handle-hello-garbage.patch
Modified:
   trunk/package/libs/cyassl/Makefile
   trunk/package/libs/cyassl/patches/100-respect_cflags.patch
   trunk/package/libs/cyassl/patches/300-SSL_set_tlsext_host_name.patch
   trunk/package/libs/cyassl/patches/400-additional_compatibility.patch
Log:
cyassl: update to wolfssl 3.6.0

Upstream wolfssl already has better checks to detect broken ssl v2
ClientHellos, we can remove our hack.

Signed-off-by: Hauke Mehrtens <[email protected]>


Modified: trunk/package/libs/cyassl/Makefile
===================================================================
--- trunk/package/libs/cyassl/Makefile  2015-07-03 23:20:01 UTC (rev 46167)
+++ trunk/package/libs/cyassl/Makefile  2015-07-03 23:20:36 UTC (rev 46168)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=wolfssl
-PKG_VERSION:=3.4.6
+PKG_VERSION:=3.6.0
 PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
-PKG_SOURCE_URL:=http://www.yassl.com/
-PKG_MD5SUM:=0410b3841588d635e9ecacb2d42c38f5
+PKG_SOURCE_URL:=http://www.wolfssl.com/
+PKG_MD5SUM:=69a6700998fdef621103983817b96fe6
 
 PKG_FIXUP:=libtool
 PKG_INSTALL:=1
@@ -27,7 +27,7 @@
   SUBMENU:=SSL
   CATEGORY:=Libraries
   TITLE:=CyaSSL library
-  URL:=http://www.yassl.com/
+  URL:=http://www.wolfssl.com/
 endef
 
 define Package/libcyassl/description

Modified: trunk/package/libs/cyassl/patches/100-respect_cflags.patch
===================================================================
--- trunk/package/libs/cyassl/patches/100-respect_cflags.patch  2015-07-03 
23:20:01 UTC (rev 46167)
+++ trunk/package/libs/cyassl/patches/100-respect_cflags.patch  2015-07-03 
23:20:36 UTC (rev 46168)
@@ -1,6 +1,6 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -47,7 +47,7 @@ AC_SUBST([CYASSL_LIBRARY_VERSION])
+@@ -47,7 +47,7 @@ AC_SUBST([WOLFSSL_LIBRARY_VERSION])
  
  # capture user C_EXTRA_FLAGS from ./configure line, CFLAGS may hold -g -O2 
even
  # if user doesn't override, no way to tell

Deleted: 
trunk/package/libs/cyassl/patches/200-SSL_accept-handle-hello-garbage.patch
===================================================================
--- trunk/package/libs/cyassl/patches/200-SSL_accept-handle-hello-garbage.patch 
2015-07-03 23:20:01 UTC (rev 46167)
+++ trunk/package/libs/cyassl/patches/200-SSL_accept-handle-hello-garbage.patch 
2015-07-03 23:20:36 UTC (rev 46168)
@@ -1,13 +0,0 @@
---- a/src/internal.c
-+++ b/src/internal.c
-@@ -6353,6 +6353,10 @@ int ProcessReply(CYASSL* ssl)
-                 b1 =
-                 
ssl->buffers.inputBuffer.buffer[ssl->buffers.inputBuffer.idx++];
-                 ssl->curSize = (word16)(((b0 & 0x7f) << 8) | b1);
-+
-+                /* does not appear to a be a SSLv2 client hello */
-+                if ( 
ssl->buffers.inputBuffer.buffer[ssl->buffers.inputBuffer.idx] != 1 )
-+                    return UNKNOWN_HANDSHAKE_TYPE;
-             }
-             else {
-                 ssl->options.processReply = getRecordLayerHeader;

Modified: trunk/package/libs/cyassl/patches/300-SSL_set_tlsext_host_name.patch
===================================================================
--- trunk/package/libs/cyassl/patches/300-SSL_set_tlsext_host_name.patch        
2015-07-03 23:20:01 UTC (rev 46167)
+++ trunk/package/libs/cyassl/patches/300-SSL_set_tlsext_host_name.patch        
2015-07-03 23:20:36 UTC (rev 46168)
@@ -1,9 +1,9 @@
 --- a/wolfssl/openssl/ssl.h
 +++ b/wolfssl/openssl/ssl.h
-@@ -398,6 +398,7 @@
+@@ -397,6 +397,7 @@ typedef WOLFSSL_X509_STORE_CTX X509_STOR
+ /* yassl had set the default to be 500 */
  #define SSL_get_default_timeout(ctx) 500
  
- 
 +#define SSL_set_tlsext_host_name(x, y) wolfSSL_UseSNI(x, 
WOLFSSL_SNI_HOST_NAME, y, strlen(y))
  
  #ifdef __cplusplus

Modified: trunk/package/libs/cyassl/patches/400-additional_compatibility.patch
===================================================================
--- trunk/package/libs/cyassl/patches/400-additional_compatibility.patch        
2015-07-03 23:20:01 UTC (rev 46167)
+++ trunk/package/libs/cyassl/patches/400-additional_compatibility.patch        
2015-07-03 23:20:36 UTC (rev 46168)
@@ -1,6 +1,7 @@
---- a/cyassl/openssl/ssl.h     2015-02-25 13:04:52.000000000 -0800
-+++ b/cyassl/openssl/ssl.h     2015-05-20 11:13:44.476628943 -0700
-@@ -25,3 +25,12 @@
+--- a/cyassl/openssl/ssl.h
++++ b/cyassl/openssl/ssl.h
+@@ -24,4 +24,13 @@
+  *
   */
  
 +#ifndef CYASSL_OPENSSL_H_
_______________________________________________
openwrt-commits mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits

Reply via email to