aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/prov/src/main/java/org/spongycastle/jcajce/spec/RepeatedSecretKeySpec.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/prov/src/main/java/org/spongycastle/jcajce/spec/RepeatedSecretKeySpec.java')
-rw-r--r--libraries/spongycastle/prov/src/main/java/org/spongycastle/jcajce/spec/RepeatedSecretKeySpec.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/libraries/spongycastle/prov/src/main/java/org/spongycastle/jcajce/spec/RepeatedSecretKeySpec.java b/libraries/spongycastle/prov/src/main/java/org/spongycastle/jcajce/spec/RepeatedSecretKeySpec.java
deleted file mode 100644
index b3a0e2f77..000000000
--- a/libraries/spongycastle/prov/src/main/java/org/spongycastle/jcajce/spec/RepeatedSecretKeySpec.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.spongycastle.jcajce.spec;
-
-
-import javax.crypto.SecretKey;
-
-/**
- * A simple object to indicate that a symmetric cipher should reuse the
- * last key provided.
- */
-public class RepeatedSecretKeySpec
- implements SecretKey
-{
- private String algorithm;
-
- public RepeatedSecretKeySpec(String algorithm)
- {
- this.algorithm = algorithm;
- }
-
- public String getAlgorithm()
- {
- return algorithm;
- }
-
- public String getFormat()
- {
- return null;
- }
-
- public byte[] getEncoded()
- {
- return null;
- }
-}