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 'pg/src/main/java/org/bouncycastle/openpgp/PGPKdfParameters.java')
-rw-r--r--pg/src/main/java/org/bouncycastle/openpgp/PGPKdfParameters.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/pg/src/main/java/org/bouncycastle/openpgp/PGPKdfParameters.java b/pg/src/main/java/org/bouncycastle/openpgp/PGPKdfParameters.java
deleted file mode 100644
index f80c5be5..00000000
--- a/pg/src/main/java/org/bouncycastle/openpgp/PGPKdfParameters.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.bouncycastle.openpgp;
-
-public class PGPKdfParameters
- implements PGPAlgorithmParameters
-{
- private final int hashAlgorithm;
- private final int symmetricWrapAlgorithm;
-
- public PGPKdfParameters(int hashAlgorithm, int symmetricWrapAlgorithm)
- {
- this.hashAlgorithm = hashAlgorithm;
- this.symmetricWrapAlgorithm = symmetricWrapAlgorithm;
- }
-
- public int getSymmetricWrapAlgorithm()
- {
- return symmetricWrapAlgorithm;
- }
-
- public int getHashAlgorithm()
- {
- return hashAlgorithm;
- }
-}