1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-09 10:19:39 +02:00

Disable ElGamal key tests

This commit is contained in:
Paul Schaub 2025-02-05 12:06:25 +01:00
parent 41a1d0d596
commit b488b70050
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
3 changed files with 19 additions and 0 deletions

View file

@ -8,6 +8,7 @@ import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import java.io.IOException;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import sop.ByteArrayAndResult;
import sop.DecryptionResult;
@ -15,6 +16,7 @@ import sop.EncryptionResult;
import sop.ReadyWithResult;
import sop.testsuite.assertions.VerificationListAssert;
@Disabled("Carol is an ElGamal key, which are no longer supported.")
public class CarolKeySignEncryptRoundtripTest {
private static final String CAROL_KEY = "-----BEGIN PGP PRIVATE KEY BLOCK-----\n" +

View file

@ -8,6 +8,8 @@ import org.junit.jupiter.api.Disabled;
import sop.SOP;
import sop.testsuite.operation.DetachedSignDetachedVerifyTest;
import java.io.IOException;
public class PGPainlessDetachedSignDetachedVerifyTest extends DetachedSignDetachedVerifyTest {
@Override
@ -15,4 +17,10 @@ public class PGPainlessDetachedSignDetachedVerifyTest extends DetachedSignDetach
public void verifyMissingCertCausesMissingArg(SOP sop) {
super.verifyMissingCertCausesMissingArg(sop);
}
@Override
@Disabled("Carol is an ElGamal key, which are no longer supported.")
public void signVerifyWithCarolKey(SOP sop) throws IOException {
super.signVerifyWithCarolKey(sop);
}
}

View file

@ -4,8 +4,17 @@
package sop.testsuite.pgpainless.operation;
import org.junit.jupiter.api.Disabled;
import sop.SOP;
import sop.testsuite.operation.InlineSignInlineVerifyTest;
import java.io.IOException;
public class PGPainlessInlineSignInlineVerifyTest extends InlineSignInlineVerifyTest {
@Override
@Disabled("Carol is an ElGamal key, which is no longer supported.")
public void inlineSignVerifyCarol(SOP sop) throws IOException {
super.inlineSignVerifyCarol(sop);
}
}