Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Security / Permissions / StrongNamePublicKeyBlob.cs / 1 / StrongNamePublicKeyBlob.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // StrongNamePublicKeyBlob.cs // namespace System.Security.Permissions { using System; using SecurityElement = System.Security.SecurityElement; using System.Security.Util; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] sealed public class StrongNamePublicKeyBlob { internal byte[] PublicKey; internal StrongNamePublicKeyBlob() { } public StrongNamePublicKeyBlob( byte[] publicKey ) { if (publicKey == null) throw new ArgumentNullException( "PublicKey" ); this.PublicKey = new byte[publicKey.Length]; Array.Copy( publicKey, 0, this.PublicKey, 0, publicKey.Length ); } internal StrongNamePublicKeyBlob( String publicKey ) { this.PublicKey = Hex.DecodeHexString( publicKey ); } private static bool CompareArrays( byte[] first, byte[] second ) { if (first.Length != second.Length) { return false; } int count = first.Length; for (int i = 0; i < count; ++i) { if (first[i] != second[i]) return false; } return true; } internal bool Equals( StrongNamePublicKeyBlob blob ) { if (blob == null) return false; else return CompareArrays( this.PublicKey, blob.PublicKey ); } public override bool Equals( Object obj ) { if (obj == null || !(obj is StrongNamePublicKeyBlob)) return false; return this.Equals( (StrongNamePublicKeyBlob)obj ); } static private int GetByteArrayHashCode( byte[] baData ) { if (baData == null) return 0; int accumulator = 0; for (int i = 0; i < baData.Length; ++i) { accumulator = (accumulator << 8) ^ (int)baData[i] ^ (accumulator >> 24); } return accumulator; } public override int GetHashCode() { return GetByteArrayHashCode( PublicKey ); } public override String ToString() { return Hex.EncodeHexString( PublicKey ); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // StrongNamePublicKeyBlob.cs // namespace System.Security.Permissions { using System; using SecurityElement = System.Security.SecurityElement; using System.Security.Util; [System.Runtime.InteropServices.ComVisible(true)] [Serializable] sealed public class StrongNamePublicKeyBlob { internal byte[] PublicKey; internal StrongNamePublicKeyBlob() { } public StrongNamePublicKeyBlob( byte[] publicKey ) { if (publicKey == null) throw new ArgumentNullException( "PublicKey" ); this.PublicKey = new byte[publicKey.Length]; Array.Copy( publicKey, 0, this.PublicKey, 0, publicKey.Length ); } internal StrongNamePublicKeyBlob( String publicKey ) { this.PublicKey = Hex.DecodeHexString( publicKey ); } private static bool CompareArrays( byte[] first, byte[] second ) { if (first.Length != second.Length) { return false; } int count = first.Length; for (int i = 0; i < count; ++i) { if (first[i] != second[i]) return false; } return true; } internal bool Equals( StrongNamePublicKeyBlob blob ) { if (blob == null) return false; else return CompareArrays( this.PublicKey, blob.PublicKey ); } public override bool Equals( Object obj ) { if (obj == null || !(obj is StrongNamePublicKeyBlob)) return false; return this.Equals( (StrongNamePublicKeyBlob)obj ); } static private int GetByteArrayHashCode( byte[] baData ) { if (baData == null) return 0; int accumulator = 0; for (int i = 0; i < baData.Length; ++i) { accumulator = (accumulator << 8) ^ (int)baData[i] ^ (accumulator >> 24); } return accumulator; } public override int GetHashCode() { return GetByteArrayHashCode( PublicKey ); } public override String ToString() { return Hex.EncodeHexString( PublicKey ); } } } // 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
- ModelUtilities.cs
- UrlMapping.cs
- UserControl.cs
- DataFormat.cs
- SystemIPv6InterfaceProperties.cs
- CellLabel.cs
- Selection.cs
- Membership.cs
- ConfigXmlAttribute.cs
- NonParentingControl.cs
- PropertyMapper.cs
- Win32MouseDevice.cs
- UnsupportedPolicyOptionsException.cs
- AdornedElementPlaceholder.cs
- XmlExpressionDumper.cs
- TextTreeTextNode.cs
- SafeSecurityHandles.cs
- RegistryConfigurationProvider.cs
- GroupStyle.cs
- WebPartDisplayModeCancelEventArgs.cs
- StreamHelper.cs
- TextBoxRenderer.cs
- SharedStream.cs
- Message.cs
- Win32PrintDialog.cs
- PermissionToken.cs
- SequenceDesignerAccessibleObject.cs
- CryptoProvider.cs
- Table.cs
- DesignBindingConverter.cs
- ArrayMergeHelper.cs
- BulletedList.cs
- ClientApiGenerator.cs
- LineBreakRecord.cs
- XmlChoiceIdentifierAttribute.cs
- ContainerParagraph.cs
- SafeHGlobalHandleCritical.cs
- LogicalTreeHelper.cs
- XmlSerializationGeneratedCode.cs
- NavigationFailedEventArgs.cs
- ColorKeyFrameCollection.cs
- ProxySimple.cs
- CapabilitiesState.cs
- MarkupCompilePass2.cs
- InputBuffer.cs
- BitmapEffectGroup.cs
- SafeNativeMethods.cs
- ItemCheckedEvent.cs
- SynchronousReceiveElement.cs
- ValidatedControlConverter.cs
- MarshalByRefObject.cs
- MethodToken.cs
- ToolStripDropDownMenu.cs
- UrlPath.cs
- AspCompat.cs
- ControlSerializer.cs
- ImageButton.cs
- RegexFCD.cs
- GridLengthConverter.cs
- PictureBox.cs
- WebPartConnectionsDisconnectVerb.cs
- InvariantComparer.cs
- Button.cs
- CodeAttributeArgumentCollection.cs
- Viewport2DVisual3D.cs
- UrlMappingsModule.cs
- ListItemConverter.cs
- BindingExpression.cs
- ConstraintStruct.cs
- OleDbFactory.cs
- DataTablePropertyDescriptor.cs
- RegexCaptureCollection.cs
- Deflater.cs
- RoleManagerModule.cs
- TypedAsyncResult.cs
- ContractNamespaceAttribute.cs
- HtmlInputCheckBox.cs
- Transform3DGroup.cs
- NegatedCellConstant.cs
- XmlBaseWriter.cs
- EmbeddedMailObjectsCollection.cs
- figurelengthconverter.cs
- NumericPagerField.cs
- ReaderOutput.cs
- CodeMemberField.cs
- DurableInstanceProvider.cs
- Header.cs
- RadialGradientBrush.cs
- GridViewColumnHeaderAutomationPeer.cs
- MouseEventArgs.cs
- SchemaImporter.cs
- StructuralType.cs
- ScriptRef.cs
- RelationshipSet.cs
- Vars.cs
- Form.cs
- StrokeNodeEnumerator.cs
- SqlMethodCallConverter.cs
- LineGeometry.cs
- TypeDelegator.cs