]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Use 'codespell:ignore' where justifiable openssl-3.5
authorRichard Levitte <levitte@openssl.org>
Thu, 18 Dec 2025 08:52:11 +0000 (09:52 +0100)
committerRichard Levitte <levitte@openssl.org>
Sun, 21 Dec 2025 08:18:02 +0000 (09:18 +0100)
There's this one random string where we have the word "Hellow".  It's a
random string, "correct" spelling is really not important, so we tell
codespell to just ignore that line.

There were also two struct field names...

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/29461)

engines/e_padlock.c
test/params_test.c

index 61da05f19915da24bf23aeca5bb140d046f291d7..8eba5ecf0863a9942dd80b12e5037e6c5950d173 100644 (file)
@@ -201,9 +201,9 @@ struct padlock_cipher_data {
             int rounds : 4;
             int dgst : 1; /* n/a in C3 */
             int align : 1; /* n/a in C3 */
-            int ciphr : 1; /* n/a in C3 */
+            int ciphr : 1; /* n/a in C3 */ /* codespell:ignore */
             unsigned int keygen : 1;
-            int interm : 1;
+            int interm : 1; /* codespell:ignore */
             unsigned int encdec : 1;
             int ksize : 2;
         } b;
index 32992d11cbde1bbc6efa946543ecd5175fbe8aae..dfb7f6f04d2d64c515b6ec90f41e4b91eb7ac91a 100644 (file)
@@ -82,7 +82,7 @@ struct object_st {
     "6768696a6b6c6d6e6f70717273747576" \
     "7778797a30313233343536373839"
 #define p4_init "BLAKE2s256" /* Random string */
-#define p5_init "Hellow World" /* Random string */
+#define p5_init "Hellow World" /* Random string */ /* codespell:ignore */
 #define p6_init OPENSSL_FULL_VERSION_STR /* Static string */
 
 static void cleanup_object(void *vobj)