21 references to SubjectKeyIdentifier
System.Security (21)
system\security\cryptography\pkcs\envelopedpkcs7.cs (4)
107
m_version = recipientIdentifierType == SubjectIdentifierType.
SubjectKeyIdentifier
? 2 : 0;
396
(recipient.RecipientIdentifierType == SubjectIdentifierType.
SubjectKeyIdentifier
))
748
if (recipient.RecipientIdentifierType == SubjectIdentifierType.
SubjectKeyIdentifier
) {
929
if (recipient.RecipientIdentifierType == SubjectIdentifierType.
SubjectKeyIdentifier
) {
system\security\cryptography\pkcs\pkcs7recipient.cs (1)
63
case SubjectIdentifierType.
SubjectKeyIdentifier
:
system\security\cryptography\pkcs\pkcs7signer.cs (4)
39
public CmsSigner (CspParameters parameters) : this(SubjectIdentifierType.
SubjectKeyIdentifier
,
55
case SubjectIdentifierType.
SubjectKeyIdentifier
:
87
value != SubjectIdentifierType.
SubjectKeyIdentifier
&&
91
if (m_dummyCert && value != SubjectIdentifierType.
SubjectKeyIdentifier
)
system\security\cryptography\pkcs\pkcsmisc.cs (4)
76
m_type = SubjectIdentifierType.
SubjectKeyIdentifier
;
103
Reset(SubjectIdentifierType.
SubjectKeyIdentifier
, X509Utils.EncodeHexString(ski));
131
Reset(SubjectIdentifierType.
SubjectKeyIdentifier
, X509Utils.EncodeHexString(ski));
164
case SubjectIdentifierType.
SubjectKeyIdentifier
:
system\security\cryptography\pkcs\pkcsutils.cs (2)
798
if (signer.SignerIdentifierType == SubjectIdentifierType.
SubjectKeyIdentifier
) {
1017
case SubjectIdentifierType.
SubjectKeyIdentifier
:
system\security\cryptography\pkcs\recipientinfo.cs (2)
274
if (this.RecipientIdentifier.Type != SubjectIdentifierType.
SubjectKeyIdentifier
)
289
if (this.RecipientIdentifier.Type != SubjectIdentifierType.
SubjectKeyIdentifier
)
system\security\cryptography\pkcs\signedpkcs7.cs (1)
63
if (signerIdentifierType != SubjectIdentifierType.
SubjectKeyIdentifier
&&
system\security\cryptography\pkcs\signerinfo.cs (3)
149
ComputeCounterSignature(new CmsSigner(m_signedCms.Version == 2 ? SubjectIdentifierType.
SubjectKeyIdentifier
: SubjectIdentifierType.IssuerAndSerialNumber));
204
else if ((counterSignerInfo.SignerIdentifier.Type == SubjectIdentifierType.
SubjectKeyIdentifier
) &&
205
(counterSignerInfo2.SignerIdentifier.Type == SubjectIdentifierType.
SubjectKeyIdentifier
)) {