Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QueryResult.cs
- ArrayConverter.cs
- SimpleType.cs
- __ComObject.cs
- ComponentSerializationService.cs
- AutomationProperty.cs
- entitydatasourceentitysetnameconverter.cs
- Item.cs
- CellTreeNode.cs
- ContainerVisual.cs
- UIElement3D.cs
- IISUnsafeMethods.cs
- DirectoryNotFoundException.cs
- FragmentQueryProcessor.cs
- GlyphRunDrawing.cs
- SiteMapNodeItemEventArgs.cs
- ControlIdConverter.cs
- AutomationPatternInfo.cs
- SystemColorTracker.cs
- GenericEnumConverter.cs
- LambdaCompiler.Address.cs
- SymmetricKeyWrap.cs
- TemplateField.cs
- NamespaceEmitter.cs
- Geometry.cs
- CopyCodeAction.cs
- ExecutorLocksHeldException.cs
- CdpEqualityComparer.cs
- ThemeDictionaryExtension.cs
- BindingGroup.cs
- SpoolingTask.cs
- MobileRedirect.cs
- PolicyDesigner.cs
- TabPanel.cs
- RequestSecurityTokenResponse.cs
- MsmqBindingFilter.cs
- ObjectQueryExecutionPlan.cs
- XhtmlBasicTextViewAdapter.cs
- RadialGradientBrush.cs
- Annotation.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- UserUseLicenseDictionaryLoader.cs
- SystemIdentity.cs
- ColumnMapVisitor.cs
- Gdiplus.cs
- TextBreakpoint.cs
- LicenseProviderAttribute.cs
- SystemNetworkInterface.cs
- QilLiteral.cs
- XmlSerializationReader.cs
- BamlCollectionHolder.cs
- XmlSubtreeReader.cs
- Icon.cs
- GridViewColumn.cs
- ContextStack.cs
- StringBuilder.cs
- TraceListeners.cs
- ReadWriteObjectLock.cs
- TypeDescriptor.cs
- Int64.cs
- DefaultValueTypeConverter.cs
- DbMetaDataColumnNames.cs
- AlignmentXValidation.cs
- OleDbPropertySetGuid.cs
- RefreshPropertiesAttribute.cs
- RegexGroup.cs
- SafeThreadHandle.cs
- FuncTypeConverter.cs
- TypeAccessException.cs
- PropertyFilterAttribute.cs
- TraceContextEventArgs.cs
- WizardStepBase.cs
- ListGeneralPage.cs
- XmlAttribute.cs
- AuthenticateEventArgs.cs
- FlowDocumentReaderAutomationPeer.cs
- MemoryFailPoint.cs
- ICollection.cs
- CollectionBuilder.cs
- GCHandleCookieTable.cs
- ContainerTracking.cs
- DetailsViewCommandEventArgs.cs
- WindowsComboBox.cs
- IntPtr.cs
- MonitorWrapper.cs
- CodeGenerator.cs
- XmlSchemaAny.cs
- ChildrenQuery.cs
- ItemCheckedEvent.cs
- DashStyle.cs
- StatusStrip.cs
- Group.cs
- SqlIdentifier.cs
- HandleRef.cs
- XPathParser.cs
- MsmqUri.cs
- ContextMenuStripGroup.cs
- SequentialActivityDesigner.cs
- MarshalDirectiveException.cs
- BasicViewGenerator.cs