mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-09-09 18:29:39 +02:00
Disable ElGamal key tests
This commit is contained in:
parent
41a1d0d596
commit
b488b70050
3 changed files with 19 additions and 0 deletions
|
@ -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" +
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue