Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / StrongNameUtility.cs / 1305376 / StrongNameUtility.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; using System.Security.Permissions; using Microsoft.Runtime.Hosting; internal class StrongNameUtility { // Help class shouldn't be instantiated. private StrongNameUtility() { } internal static bool GenerateStrongNameFile(string filename) { // variables that hold the unmanaged key IntPtr keyBlob = IntPtr.Zero; int generatedSize = 0; // create the key bool createdKey = StrongNameHelpers.StrongNameKeyGen(null, 0 /*No flags. 1 is to save the key in the key container */, out keyBlob, out generatedSize); // if there was a problem, translate it and report it if (!createdKey || keyBlob == IntPtr.Zero) { throw Marshal.GetExceptionForHR(StrongNameHelpers.StrongNameErrorInfo()); } try { Debug.Assert(keyBlob != IntPtr.Zero); // make sure the key size makes sense Debug.Assert(generatedSize > 0 && generatedSize <= Int32.MaxValue); if (generatedSize <= 0 || generatedSize > Int32.MaxValue) { throw new InvalidOperationException(SR.GetString(SR.Browser_InvalidStrongNameKey)); } // get the key into managed memory byte[] key = new byte[generatedSize]; Marshal.Copy(keyBlob, key, 0, (int)generatedSize); // write the key to the specified file using (FileStream snkStream = new FileStream(filename, FileMode.Create, FileAccess.Write)) { using (BinaryWriter snkWriter = new BinaryWriter(snkStream)) { snkWriter.Write(key); } } } finally { // release the unmanaged memory the key resides in if (keyBlob != IntPtr.Zero) { StrongNameHelpers.StrongNameFreeBuffer(keyBlob); } } return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; using System.Security.Permissions; using Microsoft.Runtime.Hosting; internal class StrongNameUtility { // Help class shouldn't be instantiated. private StrongNameUtility() { } internal static bool GenerateStrongNameFile(string filename) { // variables that hold the unmanaged key IntPtr keyBlob = IntPtr.Zero; int generatedSize = 0; // create the key bool createdKey = StrongNameHelpers.StrongNameKeyGen(null, 0 /*No flags. 1 is to save the key in the key container */, out keyBlob, out generatedSize); // if there was a problem, translate it and report it if (!createdKey || keyBlob == IntPtr.Zero) { throw Marshal.GetExceptionForHR(StrongNameHelpers.StrongNameErrorInfo()); } try { Debug.Assert(keyBlob != IntPtr.Zero); // make sure the key size makes sense Debug.Assert(generatedSize > 0 && generatedSize <= Int32.MaxValue); if (generatedSize <= 0 || generatedSize > Int32.MaxValue) { throw new InvalidOperationException(SR.GetString(SR.Browser_InvalidStrongNameKey)); } // get the key into managed memory byte[] key = new byte[generatedSize]; Marshal.Copy(keyBlob, key, 0, (int)generatedSize); // write the key to the specified file using (FileStream snkStream = new FileStream(filename, FileMode.Create, FileAccess.Write)) { using (BinaryWriter snkWriter = new BinaryWriter(snkStream)) { snkWriter.Write(key); } } } finally { // release the unmanaged memory the key resides in if (keyBlob != IntPtr.Zero) { StrongNameHelpers.StrongNameFreeBuffer(keyBlob); } } return true; } } } // 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
- SevenBitStream.cs
- TimeStampChecker.cs
- SocketException.cs
- BidPrivateBase.cs
- Encoding.cs
- sitestring.cs
- Latin1Encoding.cs
- MenuEventArgs.cs
- XmlAnyElementAttribute.cs
- RequestDescription.cs
- DecoderReplacementFallback.cs
- GuidConverter.cs
- CompositeTypefaceMetrics.cs
- OdbcConnectionOpen.cs
- DataGridColumn.cs
- CodeConditionStatement.cs
- WaitHandleCannotBeOpenedException.cs
- TrackingStringDictionary.cs
- StringToken.cs
- ReadOnlyPropertyMetadata.cs
- DataTableNewRowEvent.cs
- LinqDataSourceDeleteEventArgs.cs
- RenderCapability.cs
- SqlRowUpdatingEvent.cs
- ProviderIncompatibleException.cs
- InputScope.cs
- DeleteWorkflowOwnerCommand.cs
- NumericUpDown.cs
- UnsafeNetInfoNativeMethods.cs
- ToolStripHighContrastRenderer.cs
- RowBinding.cs
- ProcessModule.cs
- TableLayoutPanelDesigner.cs
- SurrogateChar.cs
- CultureSpecificStringDictionary.cs
- DefaultValueAttribute.cs
- XmlSchemaProviderAttribute.cs
- DynamicResourceExtension.cs
- ImageButton.cs
- PlatformCulture.cs
- ToolStripRendererSwitcher.cs
- OutputBuffer.cs
- StrokeNode.cs
- RoleManagerSection.cs
- EntityUtil.cs
- sqlstateclientmanager.cs
- ContextMenuStripGroup.cs
- ResourceSet.cs
- UnSafeCharBuffer.cs
- DataViewManagerListItemTypeDescriptor.cs
- SubtreeProcessor.cs
- ComponentRenameEvent.cs
- OverlappedAsyncResult.cs
- PixelFormats.cs
- OleStrCAMarshaler.cs
- NameValuePair.cs
- ConnectionString.cs
- AppliesToBehaviorDecisionTable.cs
- HyperLinkColumn.cs
- SqlCharStream.cs
- PrintDialog.cs
- CompiledELinqQueryState.cs
- SQLInt16Storage.cs
- HttpHeaderCollection.cs
- PageStatePersister.cs
- ShapingEngine.cs
- DesignerOptions.cs
- HttpListenerContext.cs
- XmlSchemaAny.cs
- SingleTagSectionHandler.cs
- DiscoveryClientProtocol.cs
- EncryptedKey.cs
- WebPartCloseVerb.cs
- SettingsBase.cs
- BitmapEffect.cs
- CompiledRegexRunnerFactory.cs
- ClientRuntimeConfig.cs
- XamlUtilities.cs
- XmlEnumAttribute.cs
- ContextMenuStrip.cs
- BeginStoryboard.cs
- CloudCollection.cs
- DataStreams.cs
- DbProviderFactory.cs
- ScriptBehaviorDescriptor.cs
- PrtCap_Base.cs
- TextServicesDisplayAttribute.cs
- PopupEventArgs.cs
- AbandonedMutexException.cs
- DecimalConverter.cs
- ObjectDataSourceStatusEventArgs.cs
- VisualStyleInformation.cs
- regiisutil.cs
- HttpDebugHandler.cs
- UserControl.cs
- FixedDocument.cs
- MarkupCompiler.cs
- BamlMapTable.cs
- ResourcesBuildProvider.cs
- StringPropertyBuilder.cs