aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/spec/RepeatedSecretKeySpec.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/spec/RepeatedSecretKeySpec.java')
-rw-r--r--libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/spec/RepeatedSecretKeySpec.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/spec/RepeatedSecretKeySpec.java b/libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/spec/RepeatedSecretKeySpec.java
new file mode 100644
index 000000000..d3012ecd0
--- /dev/null
+++ b/libraries/spongycastle/prov/src/main/java/org/spongycastle/jce/spec/RepeatedSecretKeySpec.java
@@ -0,0 +1,17 @@
+package org.spongycastle.jce.spec;
+
+/**
+ * A simple object to indicate that a symmetric cipher should reuse the
+ * last key provided.
+ * @deprecated use super class org.spongycastle.jcajce.spec.RepeatedSecretKeySpec
+ */
+public class RepeatedSecretKeySpec
+ extends org.spongycastle.jcajce.spec.RepeatedSecretKeySpec
+{
+ private String algorithm;
+
+ public RepeatedSecretKeySpec(String algorithm)
+ {
+ super(algorithm);
+ }
+}