Advertisement · 728 × 90
#
Hashtag
#wolfssl
Advertisement · 728 × 90

#DTLS #Java #TLS #wolfSSL

1 1 0 0
Preview
wolfSSLがEUサイバーレジリエンス法に全面対応を発表しサイバーセキュリティを強化 wolfSSL Inc. はすべての製品がEUサイバーレジリエンス法に対応すると発表。長期的なサポートとセキュアな製品提供を約束し、サイバーセキュリティを強化。

wolfSSLがEUサイバーレジリエンス法に全面対応を発表しサイバーセキュリティを強化 #サイバーセキュリティ #wolfSSL #CYBER_RESILIENCE_ACT

wolfSSL Inc. はすべての製品がEUサイバーレジリエンス法に対応すると発表。長期的なサポートとセキュアな製品提供を約束し、サイバーセキュリティを強化。

0 0 0 0
Post image

🥂 Happy New Year from wolfSSL!
2025 brought PQC, FIPS 140-3 #5041, and CRA support. Here’s to a secure 2026! 🔐✨
#CyberSecurity #PQC #FIPS1403 #wolfSSL

0 0 0 0

#AvionicsSecurity #DO178C #WolfSSL #EmbeddedSystems #Cybersecurity

0 0 0 0

#wolfSSL #Thanksgiving #opensource #cybersecurity
2/2

1 0 0 0
Post image

How fast can you extract user credentials from a Pico or RP2040? Faster than you can read this—and now I’ll show you how to lock them down with #WolfSSL and #wolfcrypt.

Security for devs who care. ▶️ Watch now https://youtu.be/UvrbCZSUje8

#rp2040 #raspberrypipico #remixfriendly #DrJonEA

1 1 0 0
Preview
wolfSSLがFIPS 140-3対応サブスクリプションプログラムを発表 wolfSSLは新たにFIPS 140-3認証取得版のサブスクリプションプログラム「Evergreen FIPS 140-3」を発表しました。これにより、セキュリティの継続性が確保されます。

wolfSSLがFIPS 140-3対応サブスクリプションプログラムを発表 #wolfSSL #FIPS_140-3 #wolfCrypt

wolfSSLは新たにFIPS 140-3認証取得版のサブスクリプションプログラム「Evergreen FIPS 140-3」を発表しました。これにより、セキュリティの継続性が確保されます。

0 0 0 0
screen snip: 

wolfssl/wolfssl
v5.8.0
uploaded 5 minutes ago
wolfSSL Embedded SSL/TLS Library

screen snip: wolfssl/wolfssl v5.8.0 uploaded 5 minutes ago wolfSSL Embedded SSL/TLS Library

Fresh off the press!
#wolfSSL 5.8.0 Managed Component
from the #Espressif ESP Registry. @wolfssl.bsky.social

Includes 5 examples to get started.

2 1 0 0
Preview
Where DevOps and Data Science meet 🤝️ A guide to compiling HAProxy with WolfSSL for enhanced performance and HTTP/3 support, including detailed build instructions.

In case you're interested in running a bleeding edge #reverseproxy with an optimized #SSL library: read our blog post on "Compiling HAProxy with WolfSSL":

www.devxy.io/blog/haproxy...

#haproxy #wolfssl #openssl

0 1 0 0
Post image

Frontgrade Gaisler and wolfSSL Collaborate to Enhance Cybersecurity in Space Applications Gothenb...

spacenews.com/frontgrade-gaisler-and-w...

#Press #Release #Frontgrade #Gaisler #wolfSSL

Event Attributes

0 0 0 0
Preview
Frontgrade Gaisler and wolfSSL Collaborate to Enhance Cybersecurity in Space Applications Gothenburg, Sweden (April 3, 2025) – Frontgrade Gaisler, a leading provider of radiation-hardened microprocessors for space missions, and wolfSSL, a renowned provider of embedded security solutions, are pleased to announce […] The post Frontgrade Gaisler and wolfSSL Collaborate to Enhance Cybersecurity in Space Applications appeared first on SpaceNews.
0 0 0 0
Preview
IGEL Partners with wolfSSL to Enhance Cybersecurity with New Standards IGEL and wolfSSL team up to enhance cryptographic security, achieving FIPS 140-3 certification while preparing for quantum computing challenges in cybersecurity.

IGEL Partners with wolfSSL to Enhance Cybersecurity with New Standards #USA #Miami #Cybersecurity #WolfSSL #IGEL

0 0 0 0
Screen snip of Visual Studio with VisualGDB extension, showing source code, output screen, and navigation menu.

Screen snip of Visual Studio with VisualGDB extension, showing source code, output screen, and navigation menu.

Check out this #wolfSSL AES CTR Arduino encryption / decryption example in the #Sysprogs #VisualGDB using the ARM Cortex-M7 Teensy 4.1 Development Board from @paulstoffregen.bsky.social 😎

GPLv2 Contributed by Chris Jennings Feb 2025 ❤️

@wolfssl.bsky.social

3 1 1 0
Post image

@embedded_world on 3/11-13 in Nuremberg, Germany is gonna be fun 💪 Hall 4 / Booth Number 4-201a will demo with @ST_World ST32MP257F (Dual Cortex-A35 1.5GHz and Cortex-M33 400MHz) on #OpenSTLinux showing #wolfSSL #TLS & #wolfCrypt test/benchmarks

www.embedded-world.d...

1 1 0 0
Getting Started with wolfSSL on Arduino Getting started with wolfSSL has never been easier. We’ve recently updated our library as published on the Arduino libraries site, listed in the “Communications” section: https://www.arduino.cc/refere...

Wanna know how to get started with #wolfSSL on #Arduino?

Check out the blog:
www.wolfssl.com/getting-star...

1 1 0 0
Source Code:

#ifndef WOLFSSL_USER_SETTINGS
    #define WOLFSSL_USER_SETTINGS
#endif

#include <Arduino.h>

/* wolfSSL user_settings.h must be included from settings.h
*
 * Make all configurations changes in user_settings.h
 *
 * Do not edit wolfSSL `settings.h` or `config.h` files.
 *
 * Do not explicitly include user_settings.h in any source code.
 *
 * Each Arduino sketch that uses wolfSSL must have: #include "wolfssl.h"
 *
 * C/C++ source files can use: #include <wolfssl/wolfcrypt/settings.h>
 *
 * The wolfSSL "settings.h" must be included in each source file using wolfSSL.
 *
 * The wolfSSL "settings.h" must be listed before any other wolfSSL include.
 */
#include <wolfssl/wolfcrypt/settings.h>
#include <wolfssl/ssl.h>

Source Code: #ifndef WOLFSSL_USER_SETTINGS #define WOLFSSL_USER_SETTINGS #endif #include <Arduino.h> /* wolfSSL user_settings.h must be included from settings.h * * Make all configurations changes in user_settings.h * * Do not edit wolfSSL `settings.h` or `config.h` files. * * Do not explicitly include user_settings.h in any source code. * * Each Arduino sketch that uses wolfSSL must have: #include "wolfssl.h" * * C/C++ source files can use: #include <wolfssl/wolfcrypt/settings.h> * * The wolfSSL "settings.h" must be included in each source file using wolfSSL. * * The wolfSSL "settings.h" must be listed before any other wolfSSL include. */ #include <wolfssl/wolfcrypt/settings.h> #include <wolfssl/ssl.h>

README 

See Getting Started with wolfSSL on Arduino, wolfSSL features are enabled and disabled in the user_settings.h file.

The user_settings.h file is found in the <Arduino>/libraries/wolfssl/src directory.

For Windows this is typically C:\Users\%USERNAME%\Documents\Arduino\libraries\wolfssl\src

For Mac: ~/Documents/Arduino/libraries/wolfssl/src

For Linux: ~/Arduino/libraries/wolfssl/src

Tips for success:

The WOLFSSL_USER_SETTINGS macro must be defined project-wide. (see wolfssl.h)
Apply any customizations only to user_settings.h; Do not edit wolfSSL settings.h or configh.h files.
Do not explicitly include user_settings.h in any source file.
For every source file that uses wolfssl, include wolfssl/wolfcrypt/settings.h before any other wolfSSL include, typically via #include "wolfssl.h".
See the wolfSSL docs for details on build configuration macros.

README See Getting Started with wolfSSL on Arduino, wolfSSL features are enabled and disabled in the user_settings.h file. The user_settings.h file is found in the <Arduino>/libraries/wolfssl/src directory. For Windows this is typically C:\Users\%USERNAME%\Documents\Arduino\libraries\wolfssl\src For Mac: ~/Documents/Arduino/libraries/wolfssl/src For Linux: ~/Arduino/libraries/wolfssl/src Tips for success: The WOLFSSL_USER_SETTINGS macro must be defined project-wide. (see wolfssl.h) Apply any customizations only to user_settings.h; Do not edit wolfSSL settings.h or configh.h files. Do not explicitly include user_settings.h in any source file. For every source file that uses wolfssl, include wolfssl/wolfcrypt/settings.h before any other wolfSSL include, typically via #include "wolfssl.h". See the wolfSSL docs for details on build configuration macros.

Using #wolfSSL cryptographic libraries on Arduino? I've created a PR that clarifies how to make successful custom user settings and use in sketches:

github.com/wolfSSL/wolf...

@wolfssl.bsky.social

3 1 0 0

We now have @wolfssl.bsky.social on Bluesky! You can actually try both at once, the DOS Bluesky client that @jameshhoward.bsky.social wrote uses #wolfSSL underneath 🙂

bsky.app/profile/jame...

3 3 0 0
Original post on mastodon.social

At this year's #FOSDEM my team at #wolfSSL got no booth space so my large volume #curl sticker distribution (LVCSD) has to be done using other means.

The LVCSD will most likely happen in the cafeteria area, but feel free to ping me if you can't get your fix as planned.

I will bring thousands […]

2 0 1 0
Preview
Code Intelligence Unveils Spark: The First AI Test Agent for Autonomous Vulnerability Detection Code Intelligence launches Spark, an innovative AI test agent that autonomously detects software vulnerabilities, enhancing testing processes significantly.

Code Intelligence Unveils Spark: The First AI Test Agent for Autonomous Vulnerability Detection #Germany #Bonn #Spark #Code_Intelligence #WolfSSL

0 0 0 0
Preview
Revolutionizing Software Testing: Code Intelligence's AI Agent Sparks New Innovations Code Intelligence has launched Spark, an AI test agent, which autonomously identifies vulnerabilities in software without any human input, setting new standards in automated testing.

Revolutionizing Software Testing: Code Intelligence's AI Agent Sparks New Innovations #Germany #Bonn #Spark #Code_Intelligence #WolfSSL

0 0 0 0
Post image

Any realm-core users interested in using #wolfSSL instead of OpenSSL?

All from the comfort of Visual Studio 2022!

Movie upload in progress...

0 0 0 0
wolfCrypt benchmark showing AES GCM encryption / decryption going at around 9MB/sec on an STM32MP1 chip at 650MHz

wolfCrypt benchmark showing AES GCM encryption / decryption going at around 9MB/sec on an STM32MP1 chip at 650MHz

That moment where I finally figure out workarounds for the crypto HAL bugs in a new microcontroller board to get AES GCM working 🕺
#wolfSSL

1 0 0 0
Preview
wolfSSLが新たに提供するRock-Solid cURLで安全性向上へ wolfSSLが提供するRock-Solid cURLは、セキュリティ向上を目的とした新しいソリューションとして注目されています。展示会にも出展予定です。

wolfSSLが新たに提供するRock-Solid cURLで安全性向上へ #神奈川県 #横浜市 #wolfSSL #Rock-Solid_cURL #cURL開発

wolfSSLが提供するRock-Solid cURLは、セキュリティ向上を目的とした新しいソリューションとして注目されています。展示会にも出展予定です。

0 0 0 0
Graphic for Getting Started with Visual Studio 2022

Graphic for Getting Started with Visual Studio 2022

I wrote a blog on getting started with #wolfSSL cryptographic libraries using Visual Studio 2022.

This can be handy to have a Windows-based #TLS client or server talking to an embedded device such as an ESP32. New example projects for Test & Benchmark apps, too!
www.wolfssl.com/getting-star...

1 0 0 0
Post image

The encryption libraries worked in a project; however, this update lets components in the ESP-IDF such as the esp-tls and http libraries leverage the power and flexibility of #wolfSSL #wolfcrypt #TLS 1.3 #PQ and more.

0 0 0 0
Preview
wolfSSL "Immediately Retired" From Fedora Linux For Failing To Follow Packaging Rules WolfSSL is an embedded SSl/TLS library designed for a range of use-cases and available as open-source under the GNU GPLv2

#wolfSSL "Immediately Retired" From #Fedora #Linux For Failing To Follow Packaging Rules 🐺
www.phoronix.com/news/wolfSSL...

1 0 0 0
Post image

#wolfSSL 5.7.2 update now available on #platformio

Commercial Grade, NIST FIPS 140-3 Certified Cryptographic libraries. All open source ❤️

registry.platformio.org/libraries/wo...

0 0 0 0
Screen snip from PlatformIO registry showing wolfSSL library.

Screen snip from PlatformIO registry showing wolfSSL library.

Official #wolfSSL on #PlatformIO !😍

1 0 0 0
Post image

I've been working on Official #wolfSSL cryptography support for #Arduino. It's there! Check it out, let me know how it goes. Please open issues for any boards that might need extra attention. See my blog:
www.wolfssl.com/getting-star...

0 0 0 0