1 write to m_encryptedKeyInfo
System.Security (1)
system\security\cryptography\pkcs\recipientinfo.cs (1)
355m_encryptedKeyInfo = encryptedKeyInfo;
9 references to m_encryptedKeyInfo
System.Security (9)
system\security\cryptography\pkcs\recipientinfo.cs (9)
265m_recipientIdentifier = new SubjectIdentifier(m_encryptedKeyInfo.RecipientId); 277long date = (((long)(uint) m_encryptedKeyInfo.Date.dwHighDateTime) << 32) | ((long)(uint) m_encryptedKeyInfo.Date.dwLowDateTime); 292if (m_encryptedKeyInfo.pOtherAttr != IntPtr.Zero) { 293CAPI.CRYPT_ATTRIBUTE_TYPE_VALUE otherKeyAttribute = (CAPI.CRYPT_ATTRIBUTE_TYPE_VALUE) Marshal.PtrToStructure(m_encryptedKeyInfo.pOtherAttr, typeof(CAPI.CRYPT_ATTRIBUTE_TYPE_VALUE)); 324if (m_encryptedKeyInfo.EncryptedKey.cbData > 0) { 325m_encryptedKey = new byte[m_encryptedKeyInfo.EncryptedKey.cbData]; 326Marshal.Copy(m_encryptedKeyInfo.EncryptedKey.pbData, m_encryptedKey, 0, m_encryptedKey.Length); 340return m_encryptedKeyInfo.RecipientId;