X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=fips%2Ffipsalgtest.pl;h=0b6ac0f3fa691f2f1d264c85e1a0e0b89bc142ca;hp=851cc98dd9f16076ea3bc08dd06bda11a2ef0492;hb=2ecc150530aeb416def9abadace50f1adfe0ad2d;hpb=3c2c4cc5f2a1b9e25c704ea2d9e7a65bcaa4f64e diff --git a/fips/fipsalgtest.pl b/fips/fipsalgtest.pl index 851cc98dd9..0b6ac0f3fa 100644 --- a/fips/fipsalgtest.pl +++ b/fips/fipsalgtest.pl @@ -881,7 +881,10 @@ sub next_line { s/\s+/ /g; # Delete trailing whitespace s/\s+$//; - return $_; + # Remove leading zeroes + s/= 00/= /; + # Translate to upper case + return uc $_; } return undef; }