Skip to content

Commit

Permalink
Fix residual typos found by codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Jul 28, 2023
1 parent 5043ece commit 52f91e4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3255,7 +3255,7 @@ More info can be found on-line at //http://wolfssl.com/yaSSL/Docs.html
a) If using wolfSSL for DTLS on the server side of a publicly accessible
machine you MUST update.
b) If using wolfSSL for TLS on the server side with private RSA keys allowing
ephemeral key exchange without low memory optimziations you MUST update and
ephemeral key exchange without low memory optimizations you MUST update and
regenerate the private RSA keys.

Please see https://www.wolfssl.com/wolfSSL/Blog/Blog.html for more details
Expand Down
2 changes: 1 addition & 1 deletion IDE/Renesas/e2studio/RA6M4/test/key_data/key_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/** Firmware update data and user key data */
typedef struct user_key_block_data
{
/* Provisioning key wapped by Renesas DLM */
/* Provisioning key wrapped by Renesas DLM */
uint8_t encrypted_provisioning_key[HW_SCE_AES_CBC_IV_BYTE_SIZE * 2];
/* Initial vector to be used when creating encrypted key */
uint8_t iv[HW_SCE_AES_CBC_IV_BYTE_SIZE];
Expand Down
14 changes: 7 additions & 7 deletions mcapi/mcapi_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ static int check_sha256(void)
}

if (memcmp(mcDigest, defDigest, CRYPT_SHA256_DIGEST_SIZE) != 0) {
printf("sha256 final memcmp fialed\n");
printf("sha256 final memcmp failed\n");
return -1;
}
printf("sha256 mcapi test passed\n");
Expand Down Expand Up @@ -351,7 +351,7 @@ static int check_sha384(void)
}

if (memcmp(mcDigest, defDigest, CRYPT_SHA384_DIGEST_SIZE) != 0) {
printf("sha384 final memcmp fialed\n");
printf("sha384 final memcmp failed\n");
return -1;
}
printf("sha384 mcapi test passed\n");
Expand Down Expand Up @@ -391,7 +391,7 @@ static int check_sha512(void)
}

if (memcmp(mcDigest, defDigest, CRYPT_SHA512_DIGEST_SIZE) != 0) {
printf("sha512 final memcmp fialed\n");
printf("sha512 final memcmp failed\n");
return -1;
}
printf("sha512 mcapi test passed\n");
Expand Down Expand Up @@ -434,7 +434,7 @@ static int check_hmac(void)
}

if (memcmp(mcDigest, defDigest, CRYPT_SHA_DIGEST_SIZE) != 0) {
printf("hmac sha final memcmp fialed\n");
printf("hmac sha final memcmp failed\n");
return -1;
}
printf("hmac sha mcapi test passed\n");
Expand Down Expand Up @@ -462,7 +462,7 @@ static int check_hmac(void)
}

if (memcmp(mcDigest, defDigest, CRYPT_SHA256_DIGEST_SIZE) != 0) {
printf("hmac sha256 final memcmp fialed\n");
printf("hmac sha256 final memcmp failed\n");
return -1;
}
printf("hmac sha256 mcapi test passed\n");
Expand Down Expand Up @@ -490,7 +490,7 @@ static int check_hmac(void)
}

if (memcmp(mcDigest, defDigest, CRYPT_SHA384_DIGEST_SIZE) != 0) {
printf("hmac sha384 final memcmp fialed\n");
printf("hmac sha384 final memcmp failed\n");
return -1;
}
printf("hmac sha384 mcapi test passed\n");
Expand Down Expand Up @@ -518,7 +518,7 @@ static int check_hmac(void)
}

if (memcmp(mcDigest, defDigest, CRYPT_SHA512_DIGEST_SIZE) != 0) {
printf("hmac sha512 final memcmp fialed\n");
printf("hmac sha512 final memcmp failed\n");
return -1;
}
printf("hmac sha512 mcapi test passed\n");
Expand Down
4 changes: 2 additions & 2 deletions wrapper/Ada/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ using the WolfSSL Ada binding. The implementation is cross-platform
and compiles on Linux, Mac OS X and Windows.

Security: The WolfSSL Ada binding avoids usage of the
Seconday Stack. The GNAT compiler has a number of hardening
Secondary Stack. The GNAT compiler has a number of hardening
features for example Stack Scrubbing; the compiler can generate
code to zero-out stack frames used by subprograms.
Unfortunately this works well for the primary stack but not
Expand Down Expand Up @@ -108,4 +108,4 @@ found in the files:
spark_sockets.ads
spark_sockets.adb
spark_terminal.ads
spark_terminal.adb
spark_terminal.adb

0 comments on commit 52f91e4

Please sign in to comment.