summaryrefslogtreecommitdiffstats
path: root/bcpkix/src/main/java/org/bouncycastle/operator/SymmetricKeyWrapper.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcpkix/src/main/java/org/bouncycastle/operator/SymmetricKeyWrapper.java')
-rw-r--r--bcpkix/src/main/java/org/bouncycastle/operator/SymmetricKeyWrapper.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/bcpkix/src/main/java/org/bouncycastle/operator/SymmetricKeyWrapper.java b/bcpkix/src/main/java/org/bouncycastle/operator/SymmetricKeyWrapper.java
deleted file mode 100644
index b1864d2..0000000
--- a/bcpkix/src/main/java/org/bouncycastle/operator/SymmetricKeyWrapper.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.bouncycastle.operator;
-
-import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
-
-public abstract class SymmetricKeyWrapper
- implements KeyWrapper
-{
- private AlgorithmIdentifier algorithmId;
-
- protected SymmetricKeyWrapper(AlgorithmIdentifier algorithmId)
- {
- this.algorithmId = algorithmId;
- }
-
- public AlgorithmIdentifier getAlgorithmIdentifier()
- {
- return algorithmId;
- }
-}