24 references to IssuerAndSerialNumber
System.Security (24)
system\security\cryptography\pkcs\envelopedpkcs7.cs (3)
77
this(SubjectIdentifierType.
IssuerAndSerialNumber
,
83
this(SubjectIdentifierType.
IssuerAndSerialNumber
, contentInfo,
94
this(SubjectIdentifierType.
IssuerAndSerialNumber
, contentInfo, encryptionAlgorithm) {
system\security\cryptography\pkcs\pkcs7recipient.cs (3)
27
public CmsRecipient (X509Certificate2 certificate):this(SubjectIdentifierType.
IssuerAndSerialNumber
, certificate){}
59
recipientIdentifierType = SubjectIdentifierType.
IssuerAndSerialNumber
;
61
case SubjectIdentifierType.
IssuerAndSerialNumber
:
system\security\cryptography\pkcs\pkcs7signer.cs (6)
32
public CmsSigner () : this(SubjectIdentifierType.
IssuerAndSerialNumber
, null) {}
36
public CmsSigner (X509Certificate2 certificate) : this(SubjectIdentifierType.
IssuerAndSerialNumber
, certificate) {}
48
this.SignerIdentifierType = SubjectIdentifierType.
IssuerAndSerialNumber
;
51
case SubjectIdentifierType.
IssuerAndSerialNumber
:
64
this.SignerIdentifierType = SubjectIdentifierType.
IssuerAndSerialNumber
;
86
if (value != SubjectIdentifierType.
IssuerAndSerialNumber
&&
system\security\cryptography\pkcs\pkcsmisc.cs (3)
118
Reset(SubjectIdentifierType.
IssuerAndSerialNumber
, issuerSerial);
126
Reset(SubjectIdentifierType.
IssuerAndSerialNumber
, issuerSerial);
159
case SubjectIdentifierType.
IssuerAndSerialNumber
:
system\security\cryptography\pkcs\pkcsutils.cs (1)
1009
case SubjectIdentifierType.
IssuerAndSerialNumber
:
system\security\cryptography\pkcs\signedpkcs7.cs (5)
37
this(SubjectIdentifierType.
IssuerAndSerialNumber
,
48
public SignedCms (ContentInfo contentInfo) : this(SubjectIdentifierType.
IssuerAndSerialNumber
, contentInfo, false) {}
52
public SignedCms (ContentInfo contentInfo, bool detached) : this(SubjectIdentifierType.
IssuerAndSerialNumber
, contentInfo, detached) {}
64
signerIdentifierType != SubjectIdentifierType.
IssuerAndSerialNumber
&&
66
signerIdentifierType = SubjectIdentifierType.
IssuerAndSerialNumber
;
system\security\cryptography\pkcs\signerinfo.cs (3)
149
ComputeCounterSignature(new CmsSigner(m_signedCms.Version == 2 ? SubjectIdentifierType.SubjectKeyIdentifier : SubjectIdentifierType.
IssuerAndSerialNumber
));
193
if ((counterSignerInfo.SignerIdentifier.Type == SubjectIdentifierType.
IssuerAndSerialNumber
) &&
194
(counterSignerInfo2.SignerIdentifier.Type == SubjectIdentifierType.
IssuerAndSerialNumber
)) {