Skip to content

Commit

Permalink
added back signature check
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Jul 2, 2024
1 parent 08e3fbe commit 84288db
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -465,10 +465,10 @@ private void keyringTest(String algorithmName1, String ed_str, int ed_num, Strin
count++;
sig.init(new JcaPGPContentVerifierBuilderProvider().setProvider("BC"), vKey);
// TODO: appears to be failing on CI system
// if (!sig.verifyCertification(vKey, sKey))
// {
// fail("failed to verify sub-key signature.");
// }
if (!sig.verifyCertification(vKey, sKey))
{
fail("failed to verify sub-key signature.");
}
}
}

Expand Down

0 comments on commit 84288db

Please sign in to comment.