Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / StrongNameUtility.cs / 1 / 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; internal class StrongNameUtility { // Help class shouldn't be instantiated. private StrongNameUtility() { } /// Free the buffer allocated by strong name functions /// /// address of memory to free [DllImport("mscoree.dll")] internal extern static void StrongNameFreeBuffer(IntPtr pbMemory); ////// Return the last error /// ///error information for the last strong name call [DllImport("mscoree.dll")] internal extern static int StrongNameErrorInfo(); ////// Generate a new key pair for strong name use /// /// desired key container name /// flags /// [out] generated public / private key blob /// [out] size of the generated blob ///true if the key was generated, false if there was an error [DllImport("mscoree.dll")] internal extern static bool StrongNameKeyGen([MarshalAs(UnmanagedType.LPWStr)]string wszKeyContainer, uint dwFlags, [Out]out IntPtr ppbKeyBlob, [Out]out long pcbKeyBlob); internal static bool GenerateStrongNameFile(string filename) { // variables that hold the unmanaged key IntPtr keyBlob = IntPtr.Zero; long generatedSize = 0; // create the key bool createdKey = 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(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) { 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; internal class StrongNameUtility { // Help class shouldn't be instantiated. private StrongNameUtility() { } /// Free the buffer allocated by strong name functions /// /// address of memory to free [DllImport("mscoree.dll")] internal extern static void StrongNameFreeBuffer(IntPtr pbMemory); ////// Return the last error /// ///error information for the last strong name call [DllImport("mscoree.dll")] internal extern static int StrongNameErrorInfo(); ////// Generate a new key pair for strong name use /// /// desired key container name /// flags /// [out] generated public / private key blob /// [out] size of the generated blob ///true if the key was generated, false if there was an error [DllImport("mscoree.dll")] internal extern static bool StrongNameKeyGen([MarshalAs(UnmanagedType.LPWStr)]string wszKeyContainer, uint dwFlags, [Out]out IntPtr ppbKeyBlob, [Out]out long pcbKeyBlob); internal static bool GenerateStrongNameFile(string filename) { // variables that hold the unmanaged key IntPtr keyBlob = IntPtr.Zero; long generatedSize = 0; // create the key bool createdKey = 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(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) { 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
- xmlglyphRunInfo.cs
- Asn1Utilities.cs
- DependencyProperty.cs
- PropagationProtocolsTracing.cs
- OletxCommittableTransaction.cs
- MiniMapControl.xaml.cs
- DataRelationCollection.cs
- ForeignConstraint.cs
- TargetInvocationException.cs
- XmlWhitespace.cs
- TdsParserHelperClasses.cs
- SiteMapDataSource.cs
- CryptoProvider.cs
- XAMLParseException.cs
- TextCompositionEventArgs.cs
- CatalogZoneAutoFormat.cs
- LocatorBase.cs
- GeneralTransform3DCollection.cs
- HttpHeaderCollection.cs
- AssemblyResolver.cs
- ComAdminWrapper.cs
- EditorAttribute.cs
- BaseResourcesBuildProvider.cs
- RegexCompilationInfo.cs
- GreaterThanOrEqual.cs
- GlyphingCache.cs
- RbTree.cs
- SQLBoolean.cs
- ManipulationStartedEventArgs.cs
- BuilderElements.cs
- XmlSchemaSet.cs
- PolicyManager.cs
- WmlCalendarAdapter.cs
- Error.cs
- SignerInfo.cs
- FilePrompt.cs
- GeometryModel3D.cs
- TextRangeSerialization.cs
- DurationConverter.cs
- ExplicitDiscriminatorMap.cs
- LocalizableAttribute.cs
- SmiTypedGetterSetter.cs
- LineSegment.cs
- XmlILOptimizerVisitor.cs
- WorkflowMessageEventHandler.cs
- ExpandableObjectConverter.cs
- RequestTimeoutManager.cs
- TextElementEnumerator.cs
- COM2DataTypeToManagedDataTypeConverter.cs
- DispatchChannelSink.cs
- DataMember.cs
- RelationshipType.cs
- CreateWorkflowOwnerCommand.cs
- FrameworkObject.cs
- SharedPersonalizationStateInfo.cs
- SQLInt32Storage.cs
- GatewayDefinition.cs
- WorkflowDesigner.cs
- ManagedCodeMarkers.cs
- RadioButtonFlatAdapter.cs
- HttpFileCollectionWrapper.cs
- Condition.cs
- OdbcException.cs
- AutoResetEvent.cs
- RuntimeArgumentHandle.cs
- ExtensionCollection.cs
- SecurityException.cs
- RemoteCryptoDecryptRequest.cs
- AttributeSetAction.cs
- RewritingProcessor.cs
- DropTarget.cs
- SimpleHandlerBuildProvider.cs
- ServiceBuildProvider.cs
- DynamicQueryableWrapper.cs
- UnsafeNativeMethods.cs
- TableSectionStyle.cs
- ControlAdapter.cs
- PolyLineSegment.cs
- SystemFonts.cs
- ConfigurationErrorsException.cs
- ExpressionQuoter.cs
- NamespaceMapping.cs
- ImageBrush.cs
- XmlSchema.cs
- WebPartUserCapability.cs
- mediapermission.cs
- XmlComplianceUtil.cs
- CatalogZone.cs
- LinkConverter.cs
- BamlLocalizabilityResolver.cs
- KnownColorTable.cs
- CompilationUtil.cs
- ITreeGenerator.cs
- SatelliteContractVersionAttribute.cs
- DiagnosticsConfiguration.cs
- AspNetSynchronizationContext.cs
- ConnectionProviderAttribute.cs
- Cursors.cs
- BamlTreeUpdater.cs
- ChannelDispatcherBase.cs