aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParametersSpi.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParametersSpi.java')
-rw-r--r--libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParametersSpi.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParametersSpi.java b/libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParametersSpi.java
new file mode 100644
index 000000000..59519a343
--- /dev/null
+++ b/libraries/spongycastle/core/src/main/jdk1.1/java/security/AlgorithmParametersSpi.java
@@ -0,0 +1,27 @@
+
+package java.security;
+
+import java.io.IOException;
+import java.security.spec.AlgorithmParameterSpec;
+import java.security.spec.InvalidParameterSpecException;
+
+public abstract class AlgorithmParametersSpi extends Object
+{
+ public AlgorithmParametersSpi()
+ {
+ }
+
+ protected abstract byte[] engineGetEncoded()
+ throws IOException;
+ protected abstract byte[] engineGetEncoded(String format)
+ throws IOException;
+ protected abstract AlgorithmParameterSpec engineGetParameterSpec(Class paramSpec)
+ throws InvalidParameterSpecException;
+ protected abstract void engineInit(AlgorithmParameterSpec paramSpec)
+ throws InvalidParameterSpecException;
+ protected abstract void engineInit(byte[] params)
+ throws IOException;
+ protected abstract void engineInit(byte[] params, String format)
+ throws IOException;
+ protected abstract String engineToString();
+}