aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/PasswordRecipientId.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/PasswordRecipientId.java')
-rw-r--r--libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/PasswordRecipientId.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/PasswordRecipientId.java b/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/PasswordRecipientId.java
deleted file mode 100644
index d3efe2f51..000000000
--- a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/PasswordRecipientId.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package org.spongycastle.cms;
-
-public class PasswordRecipientId
- extends RecipientId
-{
- /**
- * Construct a recipient ID of the password type.
- */
- public PasswordRecipientId()
- {
- super(password);
- }
-
- public int hashCode()
- {
- return password;
- }
-
- public boolean equals(
- Object o)
- {
- if (!(o instanceof PasswordRecipientId))
- {
- return false;
- }
-
- return true;
- }
-
- public Object clone()
- {
- return new PasswordRecipientId();
- }
-
- public boolean match(Object obj)
- {
- if (obj instanceof PasswordRecipientInformation)
- {
- return true;
- }
-
- return false;
- }
-}