Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410Key.java')
-rw-r--r--prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410Key.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410Key.java b/prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410Key.java
new file mode 100644
index 00000000..f1a03f9f
--- /dev/null
+++ b/prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410Key.java
@@ -0,0 +1,11 @@
+package org.spongycastle.jce.interfaces;
+
+/**
+ * Main interface for a GOST 3410-94 key.
+ */
+public interface GOST3410Key
+{
+
+ public GOST3410Params getParameters();
+
+}