Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wolfssl 5.7.4 Release for Arduino #10

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
226 changes: 210 additions & 16 deletions ChangeLog.md

Large diffs are not rendered by default.

264 changes: 175 additions & 89 deletions README

Large diffs are not rendered by default.

276 changes: 183 additions & 93 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/wolfssl_client/wolfssl_client.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* wolfssl_client.ino
*
* Copyright (C) 2006-2023 wolfSSL Inc.
* Copyright (C) 2006-2024 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
Expand Down
4 changes: 2 additions & 2 deletions examples/wolfssl_server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Additional examples can be found on [wolfSSL/wolfssl-examples](https://github.co

## Connect with an Arduino Sketch

See the companion [Arduino Sketch Client](../wolfssl_client/wolfssl_client.ino).
See the companion [Arduino Sketch Client](../wolfssl_client/wolfssl_client.ino).

## Connect with Linux Client

Expand All @@ -35,7 +35,7 @@ press the reset button or power cycle the Arduino before making a connection.
Here's one possible script to test the server from a command-line client:

```bash
#!/bin/bash
#!/usr/bin/env bash
echo "client log " > client_log.txt
counter=1
THIS_ERR=0
Expand Down
2 changes: 1 addition & 1 deletion examples/wolfssl_server/wolfssl_server.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* wolfssl_server.ino
*
* Copyright (C) 2006-2023 wolfSSL Inc.
* Copyright (C) 2006-2024 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
Expand Down
4 changes: 2 additions & 2 deletions library.json.pio
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Arduino-wolfSSL",
"version": "5.7.2",
"description": "5.7.2 (Arduino-wolfSSL for PlatformIO) A lightweight SSL/TLS library written in ANSI C and targeted for embedded, RTOS, and resource-constrained environments.",
"version": "5.7.4",
"description": "5.7.4 (Arduino-wolfSSL for PlatformIO) A lightweight SSL/TLS library written in ANSI C and targeted for embedded, RTOS, and resource-constrained environments.",
"keywords": "FIPS, DO-178, TLS, DTLS, DSA, PSK, X.509, RSA, ECC, AES, GCM, PQ, SHA, SHA256, 3DES, SHA512, MD5, ASN, CMAC, Blake, camellia, ChaCha, ChaCha20, DH, OCSP, ALPN, SNI, CRL, dilithium, ed25519, ed448, kdf, pkcs7, pkcs12, poly1305, Curve25519, sakke, SM, SM2, SM3, SM4, TFM, PKI, SRP, wolfcrypt, wolfssl, Post-quantum cryptography, Certificate management, SSL-TLS handshake, Session caching, Hash, Secure hashing, Public key infrastructure, Cryptanalysis, Lightweight cryptography, Hardware-based security",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=wolfssl
version=5.7.2
version=5.7.4
author=wolfSSL Inc.
maintainer=wolfSSL inc <[email protected]>
sentence=A lightweight SSL/TLS library written in ANSI C and targeted for embedded, RTOS, and resource-constrained environments.
Expand Down
2 changes: 1 addition & 1 deletion library.properties.pio
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Arduino-wolfSSL
version=5.7.2
version=5.7.4
author=wolfSSL Inc.
maintainer=wolfSSL inc <[email protected]>
sentence=A lightweight SSL/TLS library written in ANSI C and targeted for embedded, RTOS, and resource-constrained environments.
Expand Down
Loading