Package com.itextpdf.bouncycastle.cms
Class RecipientInformationBC
- java.lang.Object
-
- com.itextpdf.bouncycastle.cms.RecipientInformationBC
-
- All Implemented Interfaces:
IRecipientInformation
public class RecipientInformationBC extends java.lang.Object implements IRecipientInformation
Wrapper class forRecipientInformation
.
-
-
Field Summary
Fields Modifier and Type Field Description private org.bouncycastle.cms.RecipientInformation
recipientInformation
-
Constructor Summary
Constructors Constructor Description RecipientInformationBC(org.bouncycastle.cms.RecipientInformation recipientInformation)
Creates new wrapper instance forRecipientInformation
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Indicates whether some other object is "equal to" this one.byte[]
getContent(IRecipient recipient)
Calls actualgetContent
method for the wrapped RecipientInformation object.org.bouncycastle.cms.RecipientInformation
getRecipientInformation()
Gets actual org.bouncycastle object being wrapped.IRecipientId
getRID()
Calls actualgetRID
method for the wrapped RecipientInformation object.int
hashCode()
Returns a hash code value based on the wrapped object.java.lang.String
toString()
DelegatestoString
method call to the wrapped object.
-
-
-
Method Detail
-
getRecipientInformation
public org.bouncycastle.cms.RecipientInformation getRecipientInformation()
Gets actual org.bouncycastle object being wrapped.- Returns:
- wrapped
RecipientInformation
.
-
getContent
public byte[] getContent(IRecipient recipient) throws CMSExceptionBC
Calls actualgetContent
method for the wrapped RecipientInformation object.- Specified by:
getContent
in interfaceIRecipientInformation
- Parameters:
recipient
- wrapper for recipient object to use to recover content encryption key- Returns:
- the content inside the EnvelopedData this RecipientInformation is associated with.
- Throws:
CMSExceptionBC
-
getRID
public IRecipientId getRID()
Calls actualgetRID
method for the wrapped RecipientInformation object.- Specified by:
getRID
in interfaceIRecipientInformation
- Returns:
IRecipientId
the wrapper for received RecipientId object.
-
equals
public boolean equals(java.lang.Object o)
Indicates whether some other object is "equal to" this one. Compares wrapped objects.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Returns a hash code value based on the wrapped object.- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
DelegatestoString
method call to the wrapped object.- Overrides:
toString
in classjava.lang.Object
-
-