aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/PasswordRecipientId.java
blob: d3efe2f51ea607ef034f42e0a6051ff451c6348d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
    }
}