Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Security / Cryptography / CngProperty.cs / 1305376 / CngProperty.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== using System; using System.Collections.ObjectModel; using System.Diagnostics.Contracts; namespace System.Security.Cryptography { ////// Wrapper represeting an arbitrary property of a CNG key or provider /// [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public struct CngProperty : IEquatable{ private string m_name; private CngPropertyOptions m_propertyOptions; private byte[] m_value; private int? m_hashCode; public CngProperty(string name, byte[] value, CngPropertyOptions options) { if (name == null) throw new ArgumentNullException("name"); // @ m_name = name; m_propertyOptions = options; m_hashCode = null; if (value != null) { m_value = value.Clone() as byte[]; } else { m_value = null; } } /// /// Name of the property /// public string Name { get { Contract.Ensures(Contract.Result() != null); return m_name; } } /// /// Options used to set / get the property /// public CngPropertyOptions Options { get { return m_propertyOptions; } } ////// Direct value of the property -- if the value will be returned to user code or modified, use /// GetValue() instead. /// internal byte[] Value { get { return m_value; } } ////// Contents of the property /// ///public byte[] GetValue() { byte[] value = null; if (m_value != null) { value = m_value.Clone() as byte[]; } return value; } public static bool operator ==(CngProperty left, CngProperty right) { return left.Equals(right); } public static bool operator !=(CngProperty left, CngProperty right) { return !left.Equals(right); } public override bool Equals(object obj) { if (obj == null || !(obj is CngProperty)) { return false; } return Equals((CngProperty)obj); } public bool Equals(CngProperty other) { // // We will consider CNG properties equal only if the name, options and value are all also equal // if (!String.Equals(Name, other.Name, StringComparison.Ordinal)) { return false; } if (Options != other.Options) { return false; } if (m_value == null) { return other.m_value == null; } if (other.m_value == null) { return false; } if (m_value.Length != other.m_value.Length) { return false; } for (int i = 0; i < m_value.Length; i++) { if (m_value[i] != other.m_value[i]) { return false; } } return true; } public override int GetHashCode() { if (!m_hashCode.HasValue) { int hashCode = Name.GetHashCode() ^ Options.GetHashCode(); // The hash code for a byte is just the value of that byte. Since this will only modify the // lower bits of the hash code, we'll xor each byte into different sections of the hash code if (m_value != null) { for (int i = 0; i < m_value.Length; i++) { // Shift each byte forward by one byte, so that every 4 bytes has to potential to update // each of the calculated hash code's bytes. int shifted = (int)(m_value[i] << ((i % 4) * 8)); hashCode ^= shifted; } } m_hashCode = hashCode; } return m_hashCode.Value; } } /// /// Strongly typed collection of CNG properties /// [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public sealed class CngPropertyCollection : Collection{ } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== using System; using System.Collections.ObjectModel; using System.Diagnostics.Contracts; namespace System.Security.Cryptography { /// /// Wrapper represeting an arbitrary property of a CNG key or provider /// [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public struct CngProperty : IEquatable{ private string m_name; private CngPropertyOptions m_propertyOptions; private byte[] m_value; private int? m_hashCode; public CngProperty(string name, byte[] value, CngPropertyOptions options) { if (name == null) throw new ArgumentNullException("name"); // @ m_name = name; m_propertyOptions = options; m_hashCode = null; if (value != null) { m_value = value.Clone() as byte[]; } else { m_value = null; } } /// /// Name of the property /// public string Name { get { Contract.Ensures(Contract.Result() != null); return m_name; } } /// /// Options used to set / get the property /// public CngPropertyOptions Options { get { return m_propertyOptions; } } ////// Direct value of the property -- if the value will be returned to user code or modified, use /// GetValue() instead. /// internal byte[] Value { get { return m_value; } } ////// Contents of the property /// ///public byte[] GetValue() { byte[] value = null; if (m_value != null) { value = m_value.Clone() as byte[]; } return value; } public static bool operator ==(CngProperty left, CngProperty right) { return left.Equals(right); } public static bool operator !=(CngProperty left, CngProperty right) { return !left.Equals(right); } public override bool Equals(object obj) { if (obj == null || !(obj is CngProperty)) { return false; } return Equals((CngProperty)obj); } public bool Equals(CngProperty other) { // // We will consider CNG properties equal only if the name, options and value are all also equal // if (!String.Equals(Name, other.Name, StringComparison.Ordinal)) { return false; } if (Options != other.Options) { return false; } if (m_value == null) { return other.m_value == null; } if (other.m_value == null) { return false; } if (m_value.Length != other.m_value.Length) { return false; } for (int i = 0; i < m_value.Length; i++) { if (m_value[i] != other.m_value[i]) { return false; } } return true; } public override int GetHashCode() { if (!m_hashCode.HasValue) { int hashCode = Name.GetHashCode() ^ Options.GetHashCode(); // The hash code for a byte is just the value of that byte. Since this will only modify the // lower bits of the hash code, we'll xor each byte into different sections of the hash code if (m_value != null) { for (int i = 0; i < m_value.Length; i++) { // Shift each byte forward by one byte, so that every 4 bytes has to potential to update // each of the calculated hash code's bytes. int shifted = (int)(m_value[i] << ((i % 4) * 8)); hashCode ^= shifted; } } m_hashCode = hashCode; } return m_hashCode.Value; } } /// /// Strongly typed collection of CNG properties /// [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public sealed class CngPropertyCollection : Collection{ } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SynchronizedDispatch.cs
- ContentPlaceHolder.cs
- SizeConverter.cs
- SapiRecoContext.cs
- SqlDataSourceConnectionPanel.cs
- VisualTreeUtils.cs
- DesignTimeDataBinding.cs
- WithParamAction.cs
- ClientFormsAuthenticationMembershipProvider.cs
- ResourceDescriptionAttribute.cs
- WebServiceHandler.cs
- TreeWalkHelper.cs
- GeometryHitTestResult.cs
- CopyNamespacesAction.cs
- ResXFileRef.cs
- TrackingStringDictionary.cs
- BaseConfigurationRecord.cs
- DataServiceHostFactory.cs
- PartialCachingAttribute.cs
- TimeEnumHelper.cs
- RequestResizeEvent.cs
- ListViewDataItem.cs
- IItemProperties.cs
- Emitter.cs
- RoleManagerSection.cs
- SafeCryptContextHandle.cs
- Span.cs
- PieceNameHelper.cs
- GroupBox.cs
- Int16AnimationBase.cs
- RemotingException.cs
- ValidatorAttribute.cs
- CompoundFileStorageReference.cs
- NetCodeGroup.cs
- MessageSmuggler.cs
- TextContainerHelper.cs
- CollectionDataContractAttribute.cs
- DataGridCaption.cs
- SQLBytesStorage.cs
- RtfToXamlLexer.cs
- ChannelTracker.cs
- TickBar.cs
- MarkupExtensionReturnTypeAttribute.cs
- PackageProperties.cs
- ListBox.cs
- XmlSchemaComplexContentExtension.cs
- QilInvokeEarlyBound.cs
- COM2IProvidePropertyBuilderHandler.cs
- XmlElementAttribute.cs
- XmlIgnoreAttribute.cs
- _UriTypeConverter.cs
- StringUtil.cs
- SqlBuffer.cs
- OSFeature.cs
- XsdDuration.cs
- counter.cs
- StringAnimationUsingKeyFrames.cs
- DSASignatureFormatter.cs
- Point3D.cs
- InputLanguageProfileNotifySink.cs
- WebHttpSecurityElement.cs
- SafeLibraryHandle.cs
- ExecutionContext.cs
- CompositionDesigner.cs
- SocketManager.cs
- PrintingPermissionAttribute.cs
- UpDownEvent.cs
- GradientStopCollection.cs
- BinaryConverter.cs
- XmlSchemaAny.cs
- EntityDataSourceSelectingEventArgs.cs
- ElementAction.cs
- DataGridItemEventArgs.cs
- BmpBitmapEncoder.cs
- OlePropertyStructs.cs
- TiffBitmapEncoder.cs
- TitleStyle.cs
- ParsedAttributeCollection.cs
- ServicesUtilities.cs
- HtmlContainerControl.cs
- DependencyObjectType.cs
- DataKey.cs
- ActiveXHelper.cs
- HtmlTableCellCollection.cs
- ConditionalAttribute.cs
- Expressions.cs
- EntityProviderFactory.cs
- TabPanel.cs
- PcmConverter.cs
- ToolStripArrowRenderEventArgs.cs
- ProviderUtil.cs
- CodeEventReferenceExpression.cs
- AdornerDecorator.cs
- ApplicationBuildProvider.cs
- FixedSOMLineCollection.cs
- IsolatedStoragePermission.cs
- Socket.cs
- StyleSheetComponentEditor.cs
- LazyLoadBehavior.cs
- ExcludeFromCodeCoverageAttribute.cs