wolfssl icon indicating copy to clipboard operation
wolfssl copied to clipboard

The wolfSSL library is a small, fast, portable implementation of TLS/SSL for embedded devices to the cloud. wolfSSL supports up to TLS 1.3!

Results 490 wolfssl issues
Sort by recently updated
recently updated
newest added

in se050_ecc_create_key() function , the function that generates the keys and its parameters are shown below: status = sss_key_store_generate_key(&host_keystore, &keyPair, keySize*8, NULL); the keybitlength parameter is defined to be 8...

Cmake is like autoconf in that can't track dependencies done using low level IO commands. In order to have a repeatable build you need to use configure_file(). All of: ```...

I'm using WolfSSL client on embedded board. The board doesn't have RTC, so I need to override certificate DATE check errors ``` wolfSSL_CTX_set_verify(ctx, WOLFSSL_VERIFY_DEFAULT, verifyCallback); if ((rc = wolfSSL_CTX_trust_peer_buffer(ctx, certBuf,...

Here's a pull request that I'm pretty sure accomplishes everything we talked about on the Monday team call. Hopefully my code is all up to standard.

`wolfSSL_X509_free` respects the reference counting mechanism used by `WOLFSSL_X509`s. `FreeX509` can be made a static function, only used in ssl.c by `ExternalFreeX509`.

I am trying to use WolfSSL library on stm32f4xx platform with LWIP/NON-RTOS. When I start the simple server/client example. I generated the source code on stm32cubeMx and its makefile with...

* Adds RNG, ECC, RSA, ED25519/Curve25519 to the CSharp wrapper. * Adds GitHub action for building the CSharp wrapper solution and running wolfCrypt test and a TLS server/client example.

* Changes to support wolfCrypt native ST-Safe ECC operations. * Added devId support to benchmarking. Contribution from ST

Since 25 Aug 2016 OpenSSL disables RC4 by default, one needs to enable it explicitly using the enable-weak-ssl-ciphers option to Configure. Should WolfSSL also do it, define NO_RC4 by default?...

The DRBG random number generator can fail if an allocation failure occurs, e.g. here: https://github.com/wolfSSL/wolfssl/blob/3bb2d5525746b6a5d295d57789f2e08a33add740/wolfcrypt/src/random.c#L800 The user can check the RNG state by checking if `rng.status` equals `DRBG_OK`. In case...