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