2 writes to m_key
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (2)
115m_key = importedKey; 393m_key = key;
31 references to m_key
System.Core (31)
System\Security\Cryptography\AesCryptoServiceProvider.cs (31)
76Contract.Ensures(m_key != null && !m_key.IsInvalid && !m_key.IsClosed); 80if (m_key == null || m_key.IsInvalid || m_key.IsClosed) { 86byte[] keyValue = CapiNative.ExportSymmetricKey(m_key); 93Contract.Ensures(m_key != null && !m_key.IsInvalid && !m_key.IsClosed); 111if (m_key != null) { 112m_key.Dispose(); 132if (m_key != null) { 133m_key.Dispose(); 147if (m_key == null || m_key.IsInvalid || m_key.IsClosed) { 151return CreateDecryptor(m_key, IVValue); 208if (m_key == null || m_key.IsInvalid || m_key.IsClosed) { 217return CreateEncryptor(m_key, IVValue); 271Contract.Ensures(!disposing || m_key == null || m_key.IsClosed); 276if (m_key != null) { 277m_key.Dispose(); 369Contract.Ensures(m_key != null && !m_key.IsInvalid & !m_key.IsClosed); 389if (m_key != null) { 390m_key.Dispose();