Uses of Class
org.bouncycastle.cms.RecipientInformation
-
Packages that use RecipientInformation Package Description org.bouncycastle.cms A package for processing RFC 3852 Cryptographic Message Syntax (CMS) objects - also referred to as PKCS#7 (formerly RFC 2630, 3369). -
-
Uses of RecipientInformation in org.bouncycastle.cms
Subclasses of RecipientInformation in org.bouncycastle.cms Modifier and Type Class Description class
KEKRecipientInformation
the RecipientInfo class for a recipient who has been sent a message encrypted using a secret key known to the other side.class
KeyAgreeRecipientInformation
the RecipientInfo class for a recipient who has been sent a message encrypted using key agreement.class
KeyTransRecipientInformation
the KeyTransRecipientInformation class for a recipient who has been sent a secret key encrypted using their public key that needs to be used to extract the message.class
PasswordRecipientInformation
the RecipientInfo class for a recipient who has been sent a message encrypted using a password.Methods in org.bouncycastle.cms that return RecipientInformation Modifier and Type Method Description RecipientInformation
RecipientInformationStore. get(RecipientId selector)
Return the first RecipientInformation object that matches the passed in selector.Methods in org.bouncycastle.cms that return types with arguments of type RecipientInformation Modifier and Type Method Description Collection<RecipientInformation>
RecipientInformationStore. getRecipients()
Return all recipients in the collectionCollection<RecipientInformation>
RecipientInformationStore. getRecipients(RecipientId selector)
Return possible empty collection with recipients matching the passed in RecipientIdIterator<RecipientInformation>
RecipientInformationStore. iterator()
Support method for Iterable where available.Constructors in org.bouncycastle.cms with parameters of type RecipientInformation Constructor Description RecipientInformationStore(RecipientInformation recipientInformation)
Create a store containing a single RecipientInformation object.Constructor parameters in org.bouncycastle.cms with type arguments of type RecipientInformation Constructor Description RecipientInformationStore(Collection<RecipientInformation> recipientInfos)
-