@@ -171,10 +171,10 @@ private static void printDeltaTable() {
171171 double deltaPercent ;
172172
173173 System .out .println ("\n Performance Delta (compared to wolfJCE)" );
174- System .out .println ("--------------------------------------------------------------------------------" );
175- System .out .println ("| Operation | Provider | Delta | Delta |" );
176- System .out .println ("| | | Value* | (%) |" );
177- System .out .println ("|------------------------------------------|--------------|----------|----------|" );
174+ System .out .println ("------------------------------------------------------------------------------------ " );
175+ System .out .println ("| Operation | Provider | Delta | Delta |" );
176+ System .out .println ("| | | Value* | (%) |" );
177+ System .out .println ("|---------------------------------------------- |--------------|----------|----------|" );
178178
179179 /* Group results by operation */
180180 groupedResults = new HashMap <>();
@@ -227,7 +227,7 @@ private static void printDeltaTable() {
227227 /* Ensure unique operation-provider combination */
228228 String uniqueKey = operation + "|" + displayProvider ;
229229 if (!groupedResults .containsKey (uniqueKey )) {
230- System .out .printf ("| %-40s | %-12s | %+8.2f | %+8.1f |%n" ,
230+ System .out .printf ("| %-44s | %-12s | %+8.2f | %+8.1f |%n" ,
231231 operation .replace ("RSA" , "RSA/ECB/PKCS1Padding RSA" ),
232232 displayProvider ,
233233 deltaValue ,
@@ -239,7 +239,7 @@ private static void printDeltaTable() {
239239 }
240240 }
241241 }
242- System .out .println ("--------------------------------------------------------------------------------" );
242+ System .out .println ("------------------------------------------------------------------------------------ " );
243243 System .out .println ("* Delta Value: MiB/s for symmetric ciphers, operations/second for RSA and ECC" );
244244 }
245245
0 commit comments