We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31815ee commit b91676cCopy full SHA for b91676c
1 file changed
src/test/com/wolfssl/provider/jsse/test/WolfSSLTrustX509Test.java
@@ -1514,8 +1514,9 @@ public void testCheckServerTrustedWithDuplicatedRootInChain()
1514
@Test
1515
public void testUsingRsaPssCert()
1516
throws Exception {
1517
- /* skip if RSA_PSS is not compiled in at native level */
1518
- if (WolfSSL.RsaPssEnabled() == false) {
+ /* skip if RSA_PSS or TLS 1.3 are not compiled in at native level */
+ if ((WolfSSL.RsaPssEnabled() == false) ||
1519
+ (WolfSSL.TLSv13Enabled() == false)) {
1520
return;
1521
}
1522
0 commit comments