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 'pkix/src/main/j2me/org/bouncycastle/operator/bc/OperatorUtils.java')
-rw-r--r--pkix/src/main/j2me/org/bouncycastle/operator/bc/OperatorUtils.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkix/src/main/j2me/org/bouncycastle/operator/bc/OperatorUtils.java b/pkix/src/main/j2me/org/bouncycastle/operator/bc/OperatorUtils.java
deleted file mode 100644
index 37aa1367..00000000
--- a/pkix/src/main/j2me/org/bouncycastle/operator/bc/OperatorUtils.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package org.bouncycastle.operator.bc;
-
-import org.bouncycastle.operator.GenericKey;
-
-class OperatorUtils
-{
- static byte[] getKeyBytes(GenericKey key)
- {
- if (key.getRepresentation() instanceof byte[])
- {
- return (byte[])key.getRepresentation();
- }
-
- throw new IllegalArgumentException("unknown generic key type");
- }
-}