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/GOST3410PrivateKey.java')
-rw-r--r--prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410PrivateKey.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410PrivateKey.java b/prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410PrivateKey.java
new file mode 100644
index 00000000..867a0fee
--- /dev/null
+++ b/prov/src/main/java/org/spongycastle/jce/interfaces/GOST3410PrivateKey.java
@@ -0,0 +1,9 @@
+package org.spongycastle.jce.interfaces;
+
+import java.math.BigInteger;
+
+public interface GOST3410PrivateKey extends GOST3410Key, java.security.PrivateKey
+{
+
+ public BigInteger getX();
+}