Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Span.cs
- LabelEditEvent.cs
- DataService.cs
- TaskFileService.cs
- filewebresponse.cs
- Util.cs
- SectionUpdates.cs
- KnownTypesProvider.cs
- Pkcs9Attribute.cs
- EncodingTable.cs
- PointLight.cs
- CodeAttachEventStatement.cs
- RichTextBox.cs
- Socket.cs
- DataTemplateSelector.cs
- WebBaseEventKeyComparer.cs
- Boolean.cs
- WeakKeyDictionary.cs
- BlurEffect.cs
- UniformGrid.cs
- BamlResourceContent.cs
- ObjectStateEntryDbDataRecord.cs
- AssociationProvider.cs
- TransformedBitmap.cs
- ApplicationBuildProvider.cs
- _ListenerResponseStream.cs
- HelpEvent.cs
- CollectionView.cs
- IgnoreFileBuildProvider.cs
- PrivilegeNotHeldException.cs
- ScrollViewer.cs
- DataStreamFromComStream.cs
- SendMailErrorEventArgs.cs
- TaskDesigner.cs
- ApplicationHost.cs
- TypeGenericEnumerableViewSchema.cs
- CssClassPropertyAttribute.cs
- UnrecognizedPolicyAssertionElement.cs
- MonthCalendar.cs
- SchemaNotation.cs
- COM2ExtendedUITypeEditor.cs
- PropertyManager.cs
- UnknownBitmapDecoder.cs
- SchemaElementDecl.cs
- TableCell.cs
- SqlClientWrapperSmiStream.cs
- TypeHelpers.cs
- SlipBehavior.cs
- KoreanLunisolarCalendar.cs
- WebPartConnectionsCancelVerb.cs
- BaseTreeIterator.cs
- DocumentXPathNavigator.cs
- GridViewPageEventArgs.cs
- XmlReflectionImporter.cs
- SourceSwitch.cs
- ConditionCollection.cs
- LateBoundBitmapDecoder.cs
- XmlSchemaAll.cs
- XsltLoader.cs
- GradientSpreadMethodValidation.cs
- ClientBuildManagerCallback.cs
- DESCryptoServiceProvider.cs
- LineInfo.cs
- IdentityValidationException.cs
- DateTimeOffsetStorage.cs
- Calendar.cs
- GenericUriParser.cs
- StyleSelector.cs
- CounterSetInstance.cs
- x509utils.cs
- SelectionProviderWrapper.cs
- AnnotationResourceCollection.cs
- RenderDataDrawingContext.cs
- XsltInput.cs
- ConfigurationSectionGroup.cs
- NumberSubstitution.cs
- DataGridrowEditEndingEventArgs.cs
- DataBindingHandlerAttribute.cs
- ColorConvertedBitmap.cs
- OperationFormatStyle.cs
- PeerNameRecordCollection.cs
- NumberSubstitution.cs
- ContourSegment.cs
- WebHttpBindingElement.cs
- DescendantOverDescendantQuery.cs
- DateTime.cs
- WmlControlAdapter.cs
- AsyncMethodInvoker.cs
- CatalogPartCollection.cs
- DeviceContexts.cs
- Application.cs
- X500Name.cs
- DesignerDataConnection.cs
- PromptBuilder.cs
- _OverlappedAsyncResult.cs
- CreateWorkflowOwnerCommand.cs
- Literal.cs
- MatrixAnimationUsingPath.cs
- FileDialogCustomPlace.cs
- Shape.cs