Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Security / Cryptography / AsymmetricSignatureFormatter.cs / 1 / AsymmetricSignatureFormatter.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // AsymmetricSignatureFormatter.cs // namespace System.Security.Cryptography { using System; [System.Runtime.InteropServices.ComVisible(true)] public abstract class AsymmetricSignatureFormatter { // // protected constructors // protected AsymmetricSignatureFormatter() { } // // public methods // abstract public void SetKey(AsymmetricAlgorithm key); abstract public void SetHashAlgorithm(String strName); public virtual byte[] CreateSignature(HashAlgorithm hash) { if (hash == null) throw new ArgumentNullException("hash"); SetHashAlgorithm(hash.ToString()); return CreateSignature(hash.Hash); } abstract public byte[] CreateSignature(byte[] rgbHash); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LoginCancelEventArgs.cs
- ListMarkerSourceInfo.cs
- DocumentStatusResources.cs
- TimeoutValidationAttribute.cs
- TextFormatterContext.cs
- BinaryCommonClasses.cs
- UIElementParagraph.cs
- glyphs.cs
- XmlExpressionDumper.cs
- BindingEntityInfo.cs
- bindurihelper.cs
- EllipseGeometry.cs
- DesignerDataSchemaClass.cs
- SecurityContext.cs
- MultiPropertyDescriptorGridEntry.cs
- ManifestResourceInfo.cs
- WindowsFormsHelpers.cs
- HttpChannelFactory.cs
- SynchronizationContext.cs
- ValueType.cs
- XhtmlConformanceSection.cs
- DataServiceContext.cs
- Statements.cs
- Vector3DAnimationUsingKeyFrames.cs
- BitmapScalingModeValidation.cs
- Rect.cs
- IOThreadTimer.cs
- TargetPerspective.cs
- WorkflowApplicationUnloadedException.cs
- AnimationStorage.cs
- PropertyEntry.cs
- SqlDependency.cs
- MenuItem.cs
- EventLogStatus.cs
- CapiSymmetricAlgorithm.cs
- ToolStripItemEventArgs.cs
- HttpWriter.cs
- CodeCatchClauseCollection.cs
- DateRangeEvent.cs
- ProfilePropertyMetadata.cs
- XmlAnyElementAttribute.cs
- ADMembershipUser.cs
- TypeListConverter.cs
- WebBrowserUriTypeConverter.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- MD5CryptoServiceProvider.cs
- BasePropertyDescriptor.cs
- AuthenticationConfig.cs
- wgx_render.cs
- BamlBinaryWriter.cs
- InputLanguageEventArgs.cs
- HwndSource.cs
- Point3DAnimation.cs
- GeneralTransform2DTo3D.cs
- ImageConverter.cs
- SecurityHelper.cs
- XmlAttributeCache.cs
- VirtualPathProvider.cs
- ObsoleteAttribute.cs
- NameScopePropertyAttribute.cs
- StylusTip.cs
- EntityRecordInfo.cs
- OciEnlistContext.cs
- ListBindingHelper.cs
- ChangesetResponse.cs
- SmtpCommands.cs
- X509CertificateCollection.cs
- CustomErrorsSectionWrapper.cs
- WsdlBuildProvider.cs
- CapabilitiesRule.cs
- SiteMapHierarchicalDataSourceView.cs
- RuntimeWrappedException.cs
- LogReservationCollection.cs
- SimpleType.cs
- SHA1Cng.cs
- PeerPresenceInfo.cs
- HiddenFieldPageStatePersister.cs
- AttributeCollection.cs
- ConfigurationSectionGroupCollection.cs
- ToolStripRenderEventArgs.cs
- DbSourceParameterCollection.cs
- InternalSafeNativeMethods.cs
- StackSpiller.Bindings.cs
- HtmlAnchor.cs
- MdiWindowListStrip.cs
- DesignerLinkAdapter.cs
- DatagridviewDisplayedBandsData.cs
- StrokeNodeOperations.cs
- StrongNameUtility.cs
- BuildProviderUtils.cs
- Int64AnimationUsingKeyFrames.cs
- LocatorGroup.cs
- ToolStripItemClickedEventArgs.cs
- SafeNativeMemoryHandle.cs
- AttributeCollection.cs
- AssertUtility.cs
- WSUtilitySpecificationVersion.cs
- FormCollection.cs
- ApplicationSecurityInfo.cs
- UserControlCodeDomTreeGenerator.cs