]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix style of FIPS srtp self-test data arrays
authorSimo Sorce <simo@redhat.com>
Mon, 26 Jan 2026 16:55:47 +0000 (11:55 -0500)
committerDmitry Belyavskiy <beldmit@gmail.com>
Fri, 13 Feb 2026 09:53:40 +0000 (10:53 +0100)
Fix sloppy style that will break clang style detector later once
we rename the .inc file back to be a regular .c file.

Signed-off-by: Simo Sorce <simo@redhat.com>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/29222)

providers/fips/self_test_data.inc

index 26d256e52fc95f3469a440e7d30a36288b9447b6..74297b604dd5af918092450bb667f903aa064eff 100644 (file)
@@ -541,20 +541,24 @@ static const unsigned char srtpkdf_key[] = {
     0x4b, 0x26, 0xfa, 0xdc, 0x0a, 0x9b, 0xe8, 0x23,
     0xdc, 0xd6, 0xab, 0xc8, 0x2c, 0x04, 0x39, 0x75,
     0xa6, 0x03, 0xf0, 0x05, 0x87, 0xb8, 0x75, 0x34,
-    0x60, 0xba, 0xf0, 0x50, 0x2e, 0xee, 0x66, 0xbb };
+    0x60, 0xba, 0xf0, 0x50, 0x2e, 0xee, 0x66, 0xbb
+};
 
 static const unsigned char srtpkdf_salt[] = {
     0x99, 0x74, 0xa3, 0x00, 0x33, 0x28, 0x84, 0xfb,
-    0xfa, 0x03, 0x71, 0x8c, 0xe0, 0xe0 };
+    0xfa, 0x03, 0x71, 0x8c, 0xe0, 0xe0
+};
 
 static const unsigned char srtpkdf_index[] = {
-    0x6e, 0xe6, 0x30, 0x14 };
+    0x6e, 0xe6, 0x30, 0x14
+};
 
 static const int srtpkdf_label = 5;
 
 static const unsigned char srtpkdf_expected[] = {
     0x5c, 0x4e, 0x98, 0xd3, 0x29, 0x6e, 0x00, 0x9b,
-    0x45, 0x38, 0x09, 0x6d, 0x72, 0xe4 };
+    0x45, 0x38, 0x09, 0x6d, 0x72, 0xe4
+};
 
 static const ST_KAT_PARAM srtpkdf_params[] = {
     ST_KAT_PARAM_UTF8STRING(OSSL_KDF_PARAM_CIPHER, srtpkdf_cipher),