3 instantiations of SignerInfo
System.Security (3)
system\security\cryptography\pkcs\signerinfo.cs (3)
191SignerInfo counterSignerInfo2 = new SignerInfo(m_signedCms, m_parentSignerInfo, encodedCounterSignature.RawData); 757signerInfos[index] = new SignerInfo(signedCms, pbCmsgSignerInfo); 782signerInfos[index++] = new SignerInfo(signedCms, signerInfo, encodedSignerInfo.RawData);
19 references to SignerInfo
System.Security (19)
system\security\cryptography\pkcs\pkcsutils.cs (1)
279internal static unsafe int GetSignerIndex (SafeCryptMsgHandle safeCrytpMsgHandle, SignerInfo signerInfo, int startIndex) {
system\security\cryptography\pkcs\signedpkcs7.cs (3)
243public void RemoveSignature (SignerInfo signerInfo) { 449foreach (SignerInfo signer in signers) { 460foreach (SignerInfo signer in signers) {
system\security\cryptography\pkcs\signerinfo.cs (15)
30private SignerInfo m_parentSignerInfo; 59internal unsafe SignerInfo (SignedCms signedCms, SignerInfo parentSignerInfo, byte[] encodedSignerInfo) { 180public void RemoveCounterSignature (SignerInfo counterSignerInfo) { 191SignerInfo counterSignerInfo2 = new SignerInfo(m_signedCms, m_parentSignerInfo, encodedCounterSignature.RawData); 719private SignerInfo[] m_signerInfos; 722m_signerInfos = new SignerInfo[0]; 738SignerInfo[] signerInfos = new SignerInfo[dwSigners]; 764internal SignerInfoCollection (SignedCms signedCms, SignerInfo signerInfo) { 765SignerInfo[] signerInfos = new SignerInfo[0]; 776signerInfos = new SignerInfo[count]; 790public SignerInfo this[int index] { 831public void CopyTo(SignerInfo[] array, int index) { 859public SignerInfo Current {