Skip to content

Commit

Permalink
updated the class name in CheckAlgorithms.java
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikcerbak authored and judovana committed Oct 3, 2024
1 parent 418e3b9 commit 48d984e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/reproducers/checkAlgorithms/CheckAlgorithms.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
import java.nio.file.Path;
import java.util.List;

public class CheckFips {
public class CheckAlgorithms {
public static final String FIPS_PROVIDER = "SunPKCS11-NSS-FIPS";
public static final String NONFIPS_PROVIDER = "SunPCSC";
public static final String NONFIPS_ALGORITHM = "TLS_RSA_WITH_AES_128_CBC_SHA";

public static void main(String[] args) throws Exception {
if (args.length != 2) {
System.err.println("Usage: CheckFips <true|false> <algorithms|providers>");
System.err.println("Usage: CheckAlgorithms <true|false> <algorithms|providers>");
System.exit(1);
}

Expand Down

0 comments on commit 48d984e

Please sign in to comment.