Skip to content

Commit 52f91e4

Browse files
Fix residual typos found by codespell
1 parent 5043ece commit 52f91e4

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3255,7 +3255,7 @@ More info can be found on-line at //http://wolfssl.com/yaSSL/Docs.html
32553255
a) If using wolfSSL for DTLS on the server side of a publicly accessible
32563256
machine you MUST update.
32573257
b) If using wolfSSL for TLS on the server side with private RSA keys allowing
3258-
ephemeral key exchange without low memory optimziations you MUST update and
3258+
ephemeral key exchange without low memory optimizations you MUST update and
32593259
regenerate the private RSA keys.
32603260

32613261
Please see https://www.wolfssl.com/wolfSSL/Blog/Blog.html for more details

IDE/Renesas/e2studio/RA6M4/test/key_data/key_data.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/** Firmware update data and user key data */
77
typedef struct user_key_block_data
88
{
9-
/* Provisioning key wapped by Renesas DLM */
9+
/* Provisioning key wrapped by Renesas DLM */
1010
uint8_t encrypted_provisioning_key[HW_SCE_AES_CBC_IV_BYTE_SIZE * 2];
1111
/* Initial vector to be used when creating encrypted key */
1212
uint8_t iv[HW_SCE_AES_CBC_IV_BYTE_SIZE];

mcapi/mcapi_test.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ static int check_sha256(void)
311311
}
312312

313313
if (memcmp(mcDigest, defDigest, CRYPT_SHA256_DIGEST_SIZE) != 0) {
314-
printf("sha256 final memcmp fialed\n");
314+
printf("sha256 final memcmp failed\n");
315315
return -1;
316316
}
317317
printf("sha256 mcapi test passed\n");
@@ -351,7 +351,7 @@ static int check_sha384(void)
351351
}
352352

353353
if (memcmp(mcDigest, defDigest, CRYPT_SHA384_DIGEST_SIZE) != 0) {
354-
printf("sha384 final memcmp fialed\n");
354+
printf("sha384 final memcmp failed\n");
355355
return -1;
356356
}
357357
printf("sha384 mcapi test passed\n");
@@ -391,7 +391,7 @@ static int check_sha512(void)
391391
}
392392

393393
if (memcmp(mcDigest, defDigest, CRYPT_SHA512_DIGEST_SIZE) != 0) {
394-
printf("sha512 final memcmp fialed\n");
394+
printf("sha512 final memcmp failed\n");
395395
return -1;
396396
}
397397
printf("sha512 mcapi test passed\n");
@@ -434,7 +434,7 @@ static int check_hmac(void)
434434
}
435435

436436
if (memcmp(mcDigest, defDigest, CRYPT_SHA_DIGEST_SIZE) != 0) {
437-
printf("hmac sha final memcmp fialed\n");
437+
printf("hmac sha final memcmp failed\n");
438438
return -1;
439439
}
440440
printf("hmac sha mcapi test passed\n");
@@ -462,7 +462,7 @@ static int check_hmac(void)
462462
}
463463

464464
if (memcmp(mcDigest, defDigest, CRYPT_SHA256_DIGEST_SIZE) != 0) {
465-
printf("hmac sha256 final memcmp fialed\n");
465+
printf("hmac sha256 final memcmp failed\n");
466466
return -1;
467467
}
468468
printf("hmac sha256 mcapi test passed\n");
@@ -490,7 +490,7 @@ static int check_hmac(void)
490490
}
491491

492492
if (memcmp(mcDigest, defDigest, CRYPT_SHA384_DIGEST_SIZE) != 0) {
493-
printf("hmac sha384 final memcmp fialed\n");
493+
printf("hmac sha384 final memcmp failed\n");
494494
return -1;
495495
}
496496
printf("hmac sha384 mcapi test passed\n");
@@ -518,7 +518,7 @@ static int check_hmac(void)
518518
}
519519

520520
if (memcmp(mcDigest, defDigest, CRYPT_SHA512_DIGEST_SIZE) != 0) {
521-
printf("hmac sha512 final memcmp fialed\n");
521+
printf("hmac sha512 final memcmp failed\n");
522522
return -1;
523523
}
524524
printf("hmac sha512 mcapi test passed\n");

wrapper/Ada/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ using the WolfSSL Ada binding. The implementation is cross-platform
77
and compiles on Linux, Mac OS X and Windows.
88

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

0 commit comments

Comments
 (0)