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
- BeginEvent.cs
- WebPartConnectionsCloseVerb.cs
- BindStream.cs
- WebPartConnectionCollection.cs
- LogExtentCollection.cs
- Vector3DCollection.cs
- IResourceProvider.cs
- ProfileManager.cs
- ArgumentsParser.cs
- WaveHeader.cs
- TextureBrush.cs
- ScriptModule.cs
- TemplateInstanceAttribute.cs
- PipelineModuleStepContainer.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- EdmConstants.cs
- ObjectHelper.cs
- ToolStripOverflowButton.cs
- Size3DConverter.cs
- TrackBar.cs
- ToolStripContentPanelRenderEventArgs.cs
- AttributeEmitter.cs
- EnumMember.cs
- HttpsChannelListener.cs
- Point.cs
- GradientBrush.cs
- DesignerHelpers.cs
- WebBaseEventKeyComparer.cs
- HttpContext.cs
- ClientProtocol.cs
- SequenceRangeCollection.cs
- QilName.cs
- GlyphRunDrawing.cs
- FontNameEditor.cs
- dataSvcMapFileLoader.cs
- xamlnodes.cs
- MailMessageEventArgs.cs
- XPathNode.cs
- IntranetCredentialPolicy.cs
- ConnectionPool.cs
- FrameworkPropertyMetadata.cs
- FontStyles.cs
- LeafCellTreeNode.cs
- OracleNumber.cs
- SiteMapPathDesigner.cs
- BaseProcessor.cs
- XmlSchemaAttribute.cs
- JapaneseLunisolarCalendar.cs
- HttpModuleAction.cs
- ToolboxBitmapAttribute.cs
- FormParameter.cs
- SHA256Managed.cs
- ComplexTypeEmitter.cs
- TrustSection.cs
- XmlElementAttributes.cs
- BooleanFunctions.cs
- VisualStates.cs
- DecimalAnimationUsingKeyFrames.cs
- Argument.cs
- AssemblyName.cs
- XmlSchemaCompilationSettings.cs
- DesignRelationCollection.cs
- WebPartEditVerb.cs
- EmptyEnumerable.cs
- HandlerBase.cs
- XmlTypeAttribute.cs
- DataSourceViewSchemaConverter.cs
- _IPv4Address.cs
- ToolStripButton.cs
- StateItem.cs
- ModelFunction.cs
- HttpCapabilitiesSectionHandler.cs
- ResourceDescriptionAttribute.cs
- TextRunCacheImp.cs
- FilterQueryOptionExpression.cs
- ExternalDataExchangeService.cs
- VectorValueSerializer.cs
- StateInitializationDesigner.cs
- DataGridViewCellPaintingEventArgs.cs
- SoapServerMessage.cs
- ToolStripDropDown.cs
- JavascriptCallbackBehaviorAttribute.cs
- AtomPub10CategoriesDocumentFormatter.cs
- PublisherIdentityPermission.cs
- SafeNativeMethods.cs
- InvokeProviderWrapper.cs
- SafeUserTokenHandle.cs
- ProfileSettingsCollection.cs
- HtmlElementCollection.cs
- RegistryConfigurationProvider.cs
- InkPresenterAutomationPeer.cs
- CommandDevice.cs
- CommandConverter.cs
- XmlIlVisitor.cs
- Converter.cs
- ComponentChangingEvent.cs
- HttpClientCertificate.cs
- RenamedEventArgs.cs
- ToolStripManager.cs
- QilParameter.cs