2 writes to m_cmsgSignerInfo
System.Security (2)
system\security\cryptography\pkcs\signerinfo.cs (2)
53m_cmsgSignerInfo = (CAPI.CMSG_SIGNER_INFO) Marshal.PtrToStructure(pbCmsgSignerInfo.DangerousGetHandle(), typeof(CAPI.CMSG_SIGNER_INFO)); 79m_cmsgSignerInfo = (CAPI.CMSG_SIGNER_INFO) Marshal.PtrToStructure(pbCmsgSignerInfo.DangerousGetHandle(), typeof(CAPI.CMSG_SIGNER_INFO));
9 references to m_cmsgSignerInfo
System.Security (9)
system\security\cryptography\pkcs\signerinfo.cs (9)
88return (int) m_cmsgSignerInfo.dwVersion; 106m_signerIdentifier = new SubjectIdentifier(m_cmsgSignerInfo); 114return new Oid(m_cmsgSignerInfo.HashAlgorithm.pszObjId); 122m_signedAttributes = new CryptographicAttributeObjectCollection(m_cmsgSignerInfo.AuthAttrs); 132m_unsignedAttributes = new CryptographicAttributeObjectCollection(m_cmsgSignerInfo.UnauthAttrs); 259byte[] ret = new byte[m_cmsgSignerInfo.EncryptedHash.cbData]; 260Marshal.Copy(m_cmsgSignerInfo.EncryptedHash.pbData, ret, 0, ret.Length); 266return new Oid(m_cmsgSignerInfo.HashEncryptionAlgorithm.pszObjId); 275return m_cmsgSignerInfo;