RECENT BLOG NEWS
Support for AES-NI in Visual Studio
Hi! We`ve been supporting AES-NI for a few years now. We`ve decided to extend that support to Visual Studio users. If you would like to use AES-NI with Visual Studio, then let us know. Beta code will be available shortly. Contact us at facts@wolfssl.com if you have questions.
wolfSSL Releases IoT Demo of CyaSSL Working with Xively and mbed
For those of you interested in how CyaSSL fits into IoT, here is an example you should take a look at!
We have prepared a demo with CyaSSL, Xively, and mbed. It runs on various mbed platforms with Ethernet connections, including NXP LPC1768 whose RAM size is as small as 32k for applications + 32k for drivers.
In the demo configuration, mbed sends sensor data every 10 seconds through SSL to the Xively server, and you can see it through the browser on your pc.
“mbed with Sensors” –[https]–> “Xively Server” <–[https]– “Browser on PC”
Xively is a cloud IoT service. It provides both HTTP and HTTPS APIs for IoT clients, in which they highly recommend HTTPS for obvious reasons, especially for commercial applications.
The demo includes the CyaSSL-based https client class. It is forked from the standard mbed http client class. So you can find out how it can be embedded into a socket-based program as well.
To use the project, please go to our mbed site and import the demo.
http://mbed.org/users/wolfSSL/
http://mbed.org/users/wolfSSL/code/CyaSSL-Xively/
For more information:
Xively: http://xively.com
mbed: http://mbed.org
mbed HTTPClient class:
wolfSSL Enforces Stack Usage Reduction
Understanding the stack and the heap are fundamental steps for all software developers. The importance of such understanding is inversely proportional to the amount of memory available on the platform, as both compete for a piece of the total memory space available on a system.
In some cases the developer has the choice of when to use one (either the stack or heap) more than the other. In other cases, a scenario may force the developer to work with minimal use of the stack, the heap, or both.
With this in mind, wolfSSL is introducing a new build option in CyaSSL. Developers can now choose a CyaSSL build that best matches their needs of using more stack and less heap OR more heap and less stack. This process is being accomplished by the refactoring of the CyaSSL code. Currently 90% of the encryption layer has been refactored to use the new option.
Small stack usage is not enabled by default. To enable it users must use the option “–enable-small-stack” when configuring the CyaSSL build as in the following example:
./configure –enable-small-stack [other options]
For users who don`t use CyaSSL`s configure script for compilation, smaller stack usage is not enabled by default. In this case, users will need to add the compiler directive CYASSL_SMALL_STACK in config.h file or settings.h to enjoy its benefits as in the following example:
#define CYASSL_SMALL_STACK
or
#define CYASSL_SMALL_STACK 1
If you have any questions about stack usage with CyaSSL please let us know at facts@wolfssl.com.
wolfSSL with TLS 1.3
Hi! Some of you know that the IETF working group on TLS is creating the specification for TLS 1.3. We plan to upgrade wolfSSL to the TLS 1.3 specification as soon as the spec is finalized, or even close to finalized. We are always aggressive with implementing the new TLS specifications, because we like to supply the community with a good test bed. We did a great job getting TLS 1.2 out right away, as well as DTLS 1.2, and the community appreciated the effort. We plan to continue our tradition of being quick with new protocol level changes.
If you`re interested in what TLS 1.3 thinking is so far, then look here: https://www.ietf.org/proceedings/87/slides/slides-87-tls-5.pdf. If you have TLS 1.3 questions or comments, you are welcome to email us at facts@wolfssl.com or call us at +1 425 245 8247.
wolfSSL 3.0.0 Released
The new release of wolfSSL, v3.0.0, is now ready to download from our website. New features include:
– FIPS release candidate
– X.509 improvements that address items reported by Suman Jana with security researchers at UT Austin and UC Davis
– Small stack size improvements, –enable-smallstack. Offloads large local variables to the heap. (Note this is not complete.)
– Updated AES-CCM-8 cipher suites to use approved suite numbers.
Please see the README and our on-line documentation for more information or feel free to contact us.
ChaCha20 and Poly1305 for wolfSSL TLS
Hi! We`ve scheduled ourselves to implement ChaCha20 and Poly1305 into wolfSSL this summer. If you`re learning about what these are, see these links:
https://www.imperialviolet.org/2013/10/07/chacha20.html
We`re excited about this addition to our code. If you have comments, questions, or need it in our code sooner than this summer, then let us know! We can be reached at facts@wolfssl.com or by phone at +1 425 245 8247.
wolfSSL’s Todd Ouska Comments on Heartbleed Bug
As a follow up to the recent Heartbleed bug in OpenSSL, Embedded Computing Design interviewed wolfSSL’s CTO, Todd Ouska for an article titled “Heartbleed: (Not) one in a million”. You can read the article at the following URL:
http://embedded-computing.com/20937-heartbleed-not-one-in-a-million
wolfSSL JNI 1.1.0 Released
Version 1.1.0 of wolfSSL JNI is now available for download. wolfSSL JNI provides Java applications with a convenient Java API to the widely-used CyaSSL lightweight SSL/TLS library, including support for TLS 1.2 and DTLS 1.2.
This release contains bug fixes and features including:
– Updated support for CyaSSL, tested against CyaSSL 2.9.4
– Updated example certificates and CRLs for use with the included example client and server applications
– Test framework modification which now expects the user to have JUnit JARs installed on the development platform
– Updated unit tests and conversion from JUnit3 to JUnit4
– Android NDK support
– CRL monitor is now optional in server mode
Additional information regarding using wolfSSL JNI with Android NDK-based applications will follow in a separate post. wolfSSL JNI 1.1.0 can be downloaded from the wolfSSL download page and the wolfSSL JNI Manual can be found here.
OpenBSD team is refactoring OpenSSL
The OpenBSD team is refactoring OpenSSL, which is admirable work. You can see their progress at http://opensslrampage.org.
If you read the OpenSSL Rampage blog, you can see that they have their work cut out for them. The OpenSSL code base is very old, and has had literally hundreds of unknown hands making changes over its 20+ year lifespan.
The OpenSSL Heartbleed bug has been motivating for a lot of developers, which is probably Heartbleed`s only positive side effect. As the creators of wolfSSL, a modern clean room implementation of SSL/TLS, we`ve been hearing from a lot of OpenSSL consumers that want to make a change. They`ve had enough of working with a code base held together with rubber bands and twine. Here`s why we think OpenSSL users should consider a switch to wolfSSL instead of patching, re-factoring, and hoping:
1. wolfSSL is clean room developed, which means that we don`t use any OpenSSL code in our implementation of SSL/TLS. We can point to every developer that has touched a line of our code base.
2. Switching from OpenSSL to wolfSSL can be relatively easy. We usually estimate 1-4 weeks for a project where we rip and replace OpenSSL for wolfSSL.
3. If you`re making the switch, we`ll support you, whether you`re an open source project or a commercial user.
4. Our code is newer, more modern, and clean. You should be able to understand the security code plugged into your application, and we think ours is a quick read for competent C/C++ programmers.
5. We support an OpenSSL compatibility layer which supports the 400 or so most used functions in OpenSSL. We`ll help you if you need extensions to the layer.
If you have questions, thoughts, or comments to share with us, please email us at facts@wolfssl.com, or call us at +1 425 245 8247.
Common Terms and Types in wolfSSL Lightweight SSL
If you are using or thinking about using the wolfSSL lightweight SSL/TLS library in your application or project, it’s oftentimes helpful to get a general overview of some of the terms and types which are used in a simple wolfSSL connection. Below we have included a general summary of these types.
1) socket: wolfSSL uses the type SOCKET_T to allow different TCP stacks to be used.
2) SSL Context: wolfSSL uses the type CYASSL_CTX*. This is either a client context or a server context. Multiple SSL connections can be created from a single CYASSL_CTX*. The context holds CA certificates, keys, and options for the connections that will be created from it.
3) SSL Connection: wolfSSL uses the type CYASSL* to represent a single SSL connection. This object is created from a parent CYASSL_CTX*. It may contain a SOCKET_T if the underlying I/O is socket based, but that is not a requirement. With wolfSSL’s I/O callbacks a memory buffer, file, or event handler may be used instead.
1) SSL Session: wolfSSL uses the type CYASSL_SESSION*. Each time a full SSL handshake is done on a CYASSL* Connection object a new CYASSL_SESSION* is created. A single CYASSL_SESSION* can later be used to do session resumption on multiple different CYASSL* connections.
For example, let`s say a browser has 3 tabs open to a simple secure site. The browser would need:
1 CYASSL_CTX* client context with CA certificates loaded.
3 SOCKET_T sockets, 1 for each tab.
3 CYASSL* connections, one for each tab. Each connection owns one of the 3 unique SOCKET_T but was created from the same CYASSL_CTX*.
1 CYASSL_SESSION* was created from the first tab. The 2nd and 3rd tab would use the initial CYASSL_SESSION* to do session resumption with their respective CYASSL* connections.
Code wise, to retrieve a session the application would just call wolfSSL_get_session() before ending the connection with wolfSSL_shutdown().
CYASSL_SESSION* mySession = wolfSSL_get_session(ssl_conn1);
To later use that session on a new CYASSL connection (ssl_conn2), do:
wolfSSL_set_session(ssl_conn2, mySession);
before calling wolfSSL_connect(). Connection 2 will attempt session resumption.
For more detailed information, the wolfSSL API reference discusses each function in more detail: http://www.yassl.com/yaSSL/Docs-cyassl-manual-17-cyassl-api-reference.html
The wolfSSL example client (examples/client/client.c in the general wolfSSL download) does session resumption if the user passes -r to the command line. If you search for get_session and set_session you should see right where it`s used.
Weekly updates
Archives
- January 2025 (13)
- December 2024 (22)
- November 2024 (29)
- October 2024 (18)
- September 2024 (21)
- August 2024 (24)
- July 2024 (27)
- June 2024 (22)
- May 2024 (28)
- April 2024 (29)
- March 2024 (21)
- February 2024 (18)
- January 2024 (21)
- December 2023 (20)
- November 2023 (20)
- October 2023 (23)
- September 2023 (17)
- August 2023 (25)
- July 2023 (39)
- June 2023 (13)
- May 2023 (11)
- April 2023 (6)
- March 2023 (23)
- February 2023 (7)
- January 2023 (7)
- December 2022 (15)
- November 2022 (11)
- October 2022 (8)
- September 2022 (7)
- August 2022 (12)
- July 2022 (7)
- June 2022 (14)
- May 2022 (10)
- April 2022 (11)
- March 2022 (12)
- February 2022 (22)
- January 2022 (12)
- December 2021 (13)
- November 2021 (27)
- October 2021 (11)
- September 2021 (14)
- August 2021 (10)
- July 2021 (16)
- June 2021 (13)
- May 2021 (9)
- April 2021 (13)
- March 2021 (24)
- February 2021 (22)
- January 2021 (18)
- December 2020 (19)
- November 2020 (11)
- October 2020 (3)
- September 2020 (20)
- August 2020 (11)
- July 2020 (7)
- June 2020 (14)
- May 2020 (13)
- April 2020 (14)
- March 2020 (4)
- February 2020 (21)
- January 2020 (18)
- December 2019 (7)
- November 2019 (16)
- October 2019 (14)
- September 2019 (18)
- August 2019 (16)
- July 2019 (8)
- June 2019 (9)
- May 2019 (28)
- April 2019 (27)
- March 2019 (15)
- February 2019 (10)
- January 2019 (16)
- December 2018 (24)
- November 2018 (9)
- October 2018 (15)
- September 2018 (15)
- August 2018 (5)
- July 2018 (15)
- June 2018 (29)
- May 2018 (12)
- April 2018 (6)
- March 2018 (18)
- February 2018 (6)
- January 2018 (11)
- December 2017 (5)
- November 2017 (12)
- October 2017 (5)
- September 2017 (7)
- August 2017 (6)
- July 2017 (11)
- June 2017 (7)
- May 2017 (9)
- April 2017 (5)
- March 2017 (6)
- January 2017 (8)
- December 2016 (2)
- November 2016 (1)
- October 2016 (15)
- September 2016 (6)
- August 2016 (5)
- July 2016 (4)
- June 2016 (9)
- May 2016 (4)
- April 2016 (4)
- March 2016 (4)
- February 2016 (9)
- January 2016 (6)
- December 2015 (4)
- November 2015 (6)
- October 2015 (5)
- September 2015 (5)
- August 2015 (8)
- July 2015 (7)
- June 2015 (9)
- May 2015 (1)
- April 2015 (4)
- March 2015 (12)
- January 2015 (4)
- December 2014 (6)
- November 2014 (3)
- October 2014 (1)
- September 2014 (11)
- August 2014 (5)
- July 2014 (9)
- June 2014 (10)
- May 2014 (5)
- April 2014 (9)
- February 2014 (3)
- January 2014 (5)
- December 2013 (7)
- November 2013 (4)
- October 2013 (7)
- September 2013 (3)
- August 2013 (9)
- July 2013 (7)
- June 2013 (4)
- May 2013 (7)
- April 2013 (4)
- March 2013 (2)
- February 2013 (3)
- January 2013 (8)
- December 2012 (12)
- November 2012 (5)
- October 2012 (7)
- September 2012 (3)
- August 2012 (6)
- July 2012 (4)
- June 2012 (3)
- May 2012 (4)
- April 2012 (6)
- March 2012 (2)
- February 2012 (5)
- January 2012 (7)
- December 2011 (5)
- November 2011 (7)
- October 2011 (5)
- September 2011 (6)
- August 2011 (5)
- July 2011 (2)
- June 2011 (7)
- May 2011 (11)
- April 2011 (4)
- March 2011 (12)
- February 2011 (7)
- January 2011 (11)
- December 2010 (17)
- November 2010 (12)
- October 2010 (11)
- September 2010 (9)
- August 2010 (20)
- July 2010 (12)
- June 2010 (7)
- May 2010 (1)
- January 2010 (2)
- November 2009 (2)
- October 2009 (1)
- September 2009 (1)
- May 2009 (1)
- February 2009 (1)
- January 2009 (1)
- December 2008 (1)