aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECUtil.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECUtil.java')
-rw-r--r--libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECUtil.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECUtil.java b/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECUtil.java
deleted file mode 100644
index 00f9a2b79..000000000
--- a/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/ec/ECUtil.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.spongycastle.crypto.ec;
-
-import java.math.BigInteger;
-import java.security.SecureRandom;
-
-import org.spongycastle.math.ec.ECConstants;
-
-class ECUtil
-{
- static BigInteger generateK(BigInteger n, SecureRandom random)
- {
- int nBitLength = n.bitLength();
- BigInteger k = new BigInteger(nBitLength, random);
-
- while (k.equals(ECConstants.ZERO) || (k.compareTo(n) >= 0))
- {
- k = new BigInteger(nBitLength, random);
- }
-
- return k;
- }
-}