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/bouncycastle/pqc/jcajce/spec/GMSSKeySpec.java')
-rw-r--r--prov/src/main/java/org/bouncycastle/pqc/jcajce/spec/GMSSKeySpec.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/prov/src/main/java/org/bouncycastle/pqc/jcajce/spec/GMSSKeySpec.java b/prov/src/main/java/org/bouncycastle/pqc/jcajce/spec/GMSSKeySpec.java
deleted file mode 100644
index 7e469f0e..00000000
--- a/prov/src/main/java/org/bouncycastle/pqc/jcajce/spec/GMSSKeySpec.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package org.bouncycastle.pqc.jcajce.spec;
-
-import java.security.spec.KeySpec;
-
-import org.bouncycastle.pqc.crypto.gmss.GMSSParameters;
-
-public class GMSSKeySpec
- implements KeySpec
-{
- /**
- * The GMSSParameterSet
- */
- private GMSSParameters gmssParameterSet;
-
- protected GMSSKeySpec(GMSSParameters gmssParameterSet)
- {
- this.gmssParameterSet = gmssParameterSet;
- }
-
- /**
- * Returns the GMSS parameter set
- *
- * @return The GMSS parameter set
- */
- public GMSSParameters getParameters()
- {
- return gmssParameterSet;
- }
-}