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 'core/src/main/java/org/spongycastle/crypto/KeyGenerationParameters.java')
-rw-r--r--core/src/main/java/org/spongycastle/crypto/KeyGenerationParameters.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/core/src/main/java/org/spongycastle/crypto/KeyGenerationParameters.java b/core/src/main/java/org/spongycastle/crypto/KeyGenerationParameters.java
new file mode 100644
index 00000000..853f9c13
--- /dev/null
+++ b/core/src/main/java/org/spongycastle/crypto/KeyGenerationParameters.java
@@ -0,0 +1,48 @@
+package org.spongycastle.crypto;
+
+import java.security.SecureRandom;
+
+/**
+ * The base class for parameters to key generators.
+ */
+public class KeyGenerationParameters
+{
+ private SecureRandom random;
+ private int strength;
+
+ /**
+ * initialise the generator with a source of randomness
+ * and a strength (in bits).
+ *
+ * @param random the random byte source.
+ * @param strength the size, in bits, of the keys we want to produce.
+ */
+ public KeyGenerationParameters(
+ SecureRandom random,
+ int strength)
+ {
+ this.random = random;
+ this.strength = strength;
+ }
+
+ /**
+ * return the random source associated with this
+ * generator.
+ *
+ * @return the generators random source.
+ */
+ public SecureRandom getRandom()
+ {
+ return random;
+ }
+
+ /**
+ * return the bit strength for keys produced by this generator,
+ *
+ * @return the strength of the keys this generator produces (in bits).
+ */
+ public int getStrength()
+ {
+ return strength;
+ }
+}