Home
last modified time | relevance | path

Searched refs:RecipientIdentifier (Results 1 – 25 of 103) sorted by relevance

12345

/dports/java/bouncycastle15/crypto-169/util/src/main/java/org/bouncycastle/asn1/cms/
H A DRecipientIdentifier.java23 public class RecipientIdentifier class
29 public RecipientIdentifier( in RecipientIdentifier() method in RecipientIdentifier
35 public RecipientIdentifier( in RecipientIdentifier() method in RecipientIdentifier
41 public RecipientIdentifier( in RecipientIdentifier() method in RecipientIdentifier
62 public static RecipientIdentifier getInstance( in getInstance()
65 if (o == null || o instanceof RecipientIdentifier) in getInstance()
67 return (RecipientIdentifier)o; in getInstance()
72 return new RecipientIdentifier((IssuerAndSerialNumber)o); in getInstance()
77 return new RecipientIdentifier((ASN1OctetString)o); in getInstance()
82 return new RecipientIdentifier((ASN1Primitive)o); in getInstance()
H A DKeyTransRecipientInfo.java29 private RecipientIdentifier rid;
34 RecipientIdentifier rid, in KeyTransRecipientInfo()
59 this.rid = RecipientIdentifier.getInstance(seq.getObjectAt(1)); in KeyTransRecipientInfo()
98 public RecipientIdentifier getRecipientIdentifier() in getRecipientIdentifier()
/dports/net-im/signal-cli/signal-cli-0.9.0/src/main/java/org/asamk/signal/util/
H A DCommandUtil.java5 import org.asamk.signal.manager.api.RecipientIdentifier;
20 public static Set<RecipientIdentifier> getRecipientIdentifiers( in getRecipientIdentifiers()
26 final var recipientIdentifiers = new HashSet<RecipientIdentifier>(); in getRecipientIdentifiers()
28 recipientIdentifiers.add(new RecipientIdentifier.NoteToSelf()); in getRecipientIdentifiers()
44 …public static Set<RecipientIdentifier.Group> getGroupIdentifiers(Collection<String> groupIdStrings… in getGroupIdentifiers()
48 final var groupIds = new HashSet<RecipientIdentifier.Group>(); in getGroupIdentifiers()
50 groupIds.add(new RecipientIdentifier.Group(getGroupId(groupIdString))); in getGroupIdentifiers()
77 public static Set<RecipientIdentifier.Single> getSingleRecipientIdentifiers( in getSingleRecipientIdentifiers()
83 final var identifiers = new HashSet<RecipientIdentifier.Single>(); in getSingleRecipientIdentifiers()
90 public static RecipientIdentifier.Single getSingleRecipientIdentifier( in getSingleRecipientIdentifier()
[all …]
H A DErrorUtils.java5 import org.asamk.signal.manager.api.RecipientIdentifier;
27 Map<RecipientIdentifier, List<SendMessageResult>> mapResults in handleSendMessageResults() argument
40 …public static List<String> getErrorMessagesFromSendMessageResults(final Map<RecipientIdentifier, L… in getErrorMessagesFromSendMessageResults() argument
/dports/net-im/signal-cli/signal-cli-0.9.0/lib/src/main/java/org/asamk/signal/manager/
H A DManager.java22 import org.asamk.signal.manager.api.RecipientIdentifier;
503 Set<RecipientIdentifier.Single> members,
504 Set<RecipientIdentifier.Single> removeMembers,
505 Set<RecipientIdentifier.Single> admins,
506 Set<RecipientIdentifier.Single> removeAdmins,
598 Message message, Set<RecipientIdentifier> recipients
626 RecipientIdentifier.Single targetAuthor,
628 Set<RecipientIdentifier> recipients
656 RecipientIdentifier.Single recipient, String name
665 RecipientIdentifier.Single recipient, boolean blocked
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Pkcs/tests/EnvelopedCms/
H A DKeyTransRecipientInfoTests.cs56 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdType_RoundTrip()
64 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdType_FixedValue()
72 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdValue_RoundTrip()
84 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdValue_FixedValue()
96 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdType_Ski_RoundTrip()
104 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdType_Ski_FixedValue()
112 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdValue_Ski_RoundTrip()
123 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyTransRecipientIdValue_Ski_FixedValue()
H A DKeyAgreeRecipientInfoTests.cs56 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreesRecipientIdType_RoundTrip()
64 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreeRecipientIdType_FixedValue()
72 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreeRecipientIdValue_RoundTrip()
84 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreeRecipientIdValue_FixedValue()
96 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreeRecipientIdType_Ski_RoundTrip()
104 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreeRecipientIdType_Ski_FixedValue()
112 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreeRecipientIdValue_Ski_RoundTrip()
123 SubjectIdentifier subjectIdentifier = recipient.RecipientIdentifier; in TestKeyAgreeRecipientIdValue_Ski_FixedValue()
/dports/java/bouncycastle15/crypto-169/pkix/src/main/java/org/bouncycastle/cms/
H A DKeyTransRecipientInfoGenerator.java6 import org.bouncycastle.asn1.cms.RecipientIdentifier;
45 RecipientIdentifier recipId; in generate()
48 recipId = new RecipientIdentifier(issuerAndSerial); in generate()
52 recipId = new RecipientIdentifier(new DEROctetString(subjectKeyIdentifier)); in generate()
H A DKeyTransRecipientInformation.java6 import org.bouncycastle.asn1.cms.RecipientIdentifier;
29 RecipientIdentifier r = info.getRecipientIdentifier(); in KeyTransRecipientInformation()
/dports/net-im/signal-cli/signal-cli-0.9.0/lib/src/main/java/org/asamk/signal/manager/api/
H A DSendMessageResults.java11 private final Map<RecipientIdentifier, List<SendMessageResult>> results;
14 final long timestamp, final Map<RecipientIdentifier, List<SendMessageResult>> results in SendMessageResults() argument
24 public Map<RecipientIdentifier, List<SendMessageResult>> getResults() { in getResults()
H A DRecipientIdentifier.java11 public abstract class RecipientIdentifier { class
13 public static class NoteToSelf extends RecipientIdentifier {
26 public abstract static class Single extends RecipientIdentifier {
87 public static class Group extends RecipientIdentifier {
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Security/Test/System.Security.Cryptography.Pkcs/
H A DKeyTransRecipientInfoTest.cs64 …Assert.AreEqual (SubjectIdentifierType.IssuerAndSerialNumber, ktri.RecipientIdentifier.Type, "Reci… in IssuerAndSerialNumber()
65 X509IssuerSerial xis = (X509IssuerSerial) ktri.RecipientIdentifier.Value; in IssuerAndSerialNumber()
82 …Assert.AreEqual (SubjectIdentifierType.SubjectKeyIdentifier, ktri.RecipientIdentifier.Type, "Recip… in SubjectKeyIdentifier()
83 …Assert.AreEqual ("02E1A73254AEFDC0A43236F6FE236A037228B1F7", (string)ktri.RecipientIdentifier.Valu… in SubjectKeyIdentifier()
/dports/net-im/signal-cli/signal-cli-0.9.0/src/main/java/org/asamk/signal/dbus/
H A DDbusSignalImpl.java9 import org.asamk.signal.manager.api.RecipientIdentifier;
73 .map(RecipientIdentifier.class::cast) in sendMessage()
103 .map(RecipientIdentifier.class::cast) in sendRemoteDeleteMessage()
120 Set.of(new RecipientIdentifier.Group(getGroupId(groupId)))); in sendGroupRemoteDeleteMessage()
157 .map(RecipientIdentifier.class::cast) in sendMessageReaction()
174 Set.of(new RecipientIdentifier.NoteToSelf())); in sendNoteToSelfMessage()
200 Set.of(new RecipientIdentifier.Group(getGroupId(groupId)))); in sendGroupMessage()
225 Set.of(new RecipientIdentifier.Group(getGroupId(groupId)))); in sendGroupMessageReaction()
544 private static Set<RecipientIdentifier.Single> getSingleRecipientIdentifiers( in getSingleRecipientIdentifiers()
547 final var identifiers = new HashSet<RecipientIdentifier.Single>(); in getSingleRecipientIdentifiers()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Pkcs/src/System/Security/Cryptography/Pkcs/
H A DKeyTransRecipientInfo.cs27 public override SubjectIdentifier RecipientIdentifier property in System.Security.Cryptography.Pkcs.KeyTransRecipientInfo
31 … return _lazyRecipientIdentifier ?? (_lazyRecipientIdentifier = Pal.RecipientIdentifier);
H A DKeyAgreeRecipientInfo.cs28 public override SubjectIdentifier RecipientIdentifier property in System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo
32 … return _lazyRecipientIdentifier ?? (_lazyRecipientIdentifier = Pal.RecipientIdentifier);
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Pkcs/src/Internal/Cryptography/Pal/Windows/
H A DKeyAgreeRecipientInfoPalWindows.cs42 public sealed override SubjectIdentifier RecipientIdentifier property in Internal.Cryptography.Pal.Windows.KeyAgreeRecipientInfoPalWindows
119 if (RecipientIdentifier.Type != SubjectIdentifierType.SubjectKeyIdentifier)
140 if (RecipientIdentifier.Type != SubjectIdentifierType.SubjectKeyIdentifier)
/dports/net/samba412/samba-4.12.15/source4/heimdal/lib/asn1/
H A Dcms.asn156 -- RecipientIdentifier is same as SignerIdentifier,
65 RecipientIdentifier ::= CMSIdentifier
113 rid RecipientIdentifier,
/dports/net-mgmt/wmi-client/wmi-1.3.16/Samba/source/heimdal/lib/asn1/
H A DCMS.asn156 -- RecipientIdentifier is same as SignerIdentifier,
65 RecipientIdentifier ::= CMSIdentifier
113 rid RecipientIdentifier,
/dports/net-im/signal-cli/signal-cli-0.9.0/src/main/java/org/asamk/signal/commands/
H A DSendTypingCommand.java12 import org.asamk.signal.manager.api.RecipientIdentifier;
46 final var recipientIdentifiers = new HashSet<RecipientIdentifier>(); in handleCommand()
H A DSendCommand.java18 import org.asamk.signal.manager.api.RecipientIdentifier;
77 .filter(r -> r instanceof RecipientIdentifier.Single) in handleCommand()
78 .map(RecipientIdentifier.Single.class::cast) in handleCommand()
/dports/devel/itext/itext-4.2.0/core/com/lowagie/text/pdf/
H A DPdfPublicKeySecurityHandler.java122 import org.bouncycastle.asn1.cms.RecipientIdentifier;
276 RecipientIdentifier recipId = new RecipientIdentifier(issuerandserialnumber); in computeRecipientInfo()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Pkcs/src/Internal/Cryptography/
H A DRecipientInfoPal.cs20 public abstract SubjectIdentifier RecipientIdentifier { get; } property in Internal.Cryptography.RecipientInfoPal
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Security/System.Security.Cryptography.Pkcs/
H A DRecipientInfo.cs55 public abstract SubjectIdentifier RecipientIdentifier { get; } property in System.Security.Cryptography.Pkcs.RecipientInfo
H A DKeyAgreeRecipientInfo.cs63 public override SubjectIdentifier RecipientIdentifier { property in System.Security.Cryptography.Pkcs.KeyAgreeRecipientInfo
H A DKeyTransRecipientInfo.cs61 public override SubjectIdentifier RecipientIdentifier { property in System.Security.Cryptography.Pkcs.KeyTransRecipientInfo

12345