aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/RSAKeyEncapsulationTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/RSAKeyEncapsulationTest.java')
-rwxr-xr-xlibraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/RSAKeyEncapsulationTest.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/RSAKeyEncapsulationTest.java b/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/RSAKeyEncapsulationTest.java
deleted file mode 100755
index b2f0f8fde..000000000
--- a/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/test/RSAKeyEncapsulationTest.java
+++ /dev/null
@@ -1,61 +0,0 @@
-package org.spongycastle.crypto.test;
-
-import java.math.BigInteger;
-import java.security.SecureRandom;
-
-import org.spongycastle.crypto.AsymmetricCipherKeyPair;
-import org.spongycastle.crypto.digests.SHA1Digest;
-import org.spongycastle.crypto.generators.KDF2BytesGenerator;
-import org.spongycastle.crypto.generators.RSAKeyPairGenerator;
-import org.spongycastle.crypto.kems.RSAKeyEncapsulation;
-import org.spongycastle.crypto.params.KeyParameter;
-import org.spongycastle.crypto.params.RSAKeyGenerationParameters;
-import org.spongycastle.util.test.SimpleTest;
-
-/**
- * Tests for the RSA Key Encapsulation Mechanism
- */
-public class RSAKeyEncapsulationTest
- extends SimpleTest
-{
- public String getName()
- {
- return "RSAKeyEncapsulation";
- }
-
- public void performTest()
- throws Exception
- {
- // Generate RSA key pair
- RSAKeyPairGenerator rsaGen = new RSAKeyPairGenerator();
- rsaGen.init(new RSAKeyGenerationParameters(BigInteger.valueOf(65537), new SecureRandom(), 1024, 5));
- AsymmetricCipherKeyPair keys = rsaGen.generateKeyPair();
-
- // Set RSA-KEM parameters
- RSAKeyEncapsulation kem;
- KDF2BytesGenerator kdf = new KDF2BytesGenerator(new SHA1Digest());
- SecureRandom rnd = new SecureRandom();
- byte[] out = new byte[128];
- KeyParameter key1, key2;
-
- // Test RSA-KEM
- kem = new RSAKeyEncapsulation(kdf, rnd);
-
- kem.init(keys.getPublic());
- key1 = (KeyParameter)kem.encrypt(out, 128);
-
- kem.init(keys.getPrivate());
- key2 = (KeyParameter)kem.decrypt(out, 128);
-
- if (!areEqual(key1.getKey(), key2.getKey()))
- {
- fail("failed test");
- }
- }
-
- public static void main(
- String[] args)
- {
- runTest(new RSAKeyEncapsulationTest());
- }
-}