Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Security / Cryptography / RSAPKCS1SignatureDeformatter.cs / 1 / RSAPKCS1SignatureDeformatter.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // RSAPKCS1SignatureDeformatter.cs // namespace System.Security.Cryptography { [System.Runtime.InteropServices.ComVisible(true)] public class RSAPKCS1SignatureDeformatter : AsymmetricSignatureDeformatter { // // This class provides the PKCS#1 v1.5 signature format processing during // the verification process (i.e. decrypting the object). The class has // some special code for dealing with the CSP based RSA keys as the // formatting and verification is done within the CSP rather than in // managed code. // private RSA _rsaKey; // RSA Key value to do decrypt operation private String _strOID; // OID value for the HASH algorithm // // public constructors // public RSAPKCS1SignatureDeformatter() {} public RSAPKCS1SignatureDeformatter(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); _rsaKey = (RSA) key; } // // public methods // public override void SetKey(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); _rsaKey = (RSA) key; } public override void SetHashAlgorithm(String strName) { _strOID = CryptoConfig.MapNameToOID(strName); } public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) { if (_strOID == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingOID")); if (_rsaKey == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingKey")); if (rgbHash == null) throw new ArgumentNullException("rgbHash"); if (rgbSignature == null) throw new ArgumentNullException("rgbSignature"); // Two cases here -- if we are talking to the CSP version or if we are talking to some other RSA provider. if (_rsaKey is RSACryptoServiceProvider) { return ((RSACryptoServiceProvider) _rsaKey).VerifyHash(rgbHash, _strOID, rgbSignature); } else { byte[] pad = Utils.RsaPkcs1Padding(_rsaKey, CryptoConfig.EncodeOID(_strOID), rgbHash); // Apply the public key to the signature data to get back the padded buffer actually signed. // Compare the two buffers to see if they match; ignoring any leading zeros return Utils.CompareBigIntArrays(_rsaKey.EncryptValue(rgbSignature), pad); } } } } // 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
- Viewport3DVisual.cs
- ProfileEventArgs.cs
- BamlLocalizabilityResolver.cs
- UnaryNode.cs
- COM2ExtendedBrowsingHandler.cs
- FormClosingEvent.cs
- DataFieldConverter.cs
- BaseUriHelper.cs
- WebPartUtil.cs
- SimplePropertyEntry.cs
- Soap.cs
- ScriptManager.cs
- LockRenewalTask.cs
- InvalidDataException.cs
- COM2ExtendedUITypeEditor.cs
- XmlTypeAttribute.cs
- ExtendedProtectionPolicy.cs
- JavaScriptString.cs
- PropertyCollection.cs
- CompiledRegexRunner.cs
- StringSorter.cs
- ToolboxItemCollection.cs
- PrintPageEvent.cs
- ClientSideProviderDescription.cs
- TextEditorParagraphs.cs
- ScalarType.cs
- SpecialTypeDataContract.cs
- DbCommandDefinition.cs
- BrowserCapabilitiesCompiler.cs
- ManipulationInertiaStartingEventArgs.cs
- StylusPoint.cs
- ReferencedAssembly.cs
- ToggleButtonAutomationPeer.cs
- AssemblyAttributes.cs
- UIElementPropertyUndoUnit.cs
- XmlSerializableServices.cs
- SqlRecordBuffer.cs
- MenuItemBindingCollection.cs
- HtmlInputCheckBox.cs
- RC2.cs
- ConfigurationLocation.cs
- AuthStoreRoleProvider.cs
- ActivitySurrogate.cs
- COM2IPerPropertyBrowsingHandler.cs
- Nullable.cs
- DesignerActionPropertyItem.cs
- ParseNumbers.cs
- Ops.cs
- Rectangle.cs
- SchemaLookupTable.cs
- InvokerUtil.cs
- BitmapDownload.cs
- WebPartsSection.cs
- ErrorStyle.cs
- GregorianCalendarHelper.cs
- ScriptingScriptResourceHandlerSection.cs
- XPathQilFactory.cs
- LayoutTable.cs
- IisHelper.cs
- ReadOnlyHierarchicalDataSourceView.cs
- SocketElement.cs
- Vars.cs
- OleDbCommandBuilder.cs
- Int32Rect.cs
- SqlAggregateChecker.cs
- EventInfo.cs
- GcSettings.cs
- ClipboardData.cs
- ReadOnlyPermissionSet.cs
- HelpFileFileNameEditor.cs
- PropertyMetadata.cs
- OrCondition.cs
- OpenTypeCommon.cs
- EditingMode.cs
- ConstructorExpr.cs
- UnitySerializationHolder.cs
- CultureMapper.cs
- ToolStripGripRenderEventArgs.cs
- OneOfElement.cs
- CompositeFontParser.cs
- PrivilegedConfigurationManager.cs
- Point3DCollection.cs
- WinFormsComponentEditor.cs
- ResourceDescriptionAttribute.cs
- HttpCapabilitiesSectionHandler.cs
- CompilationRelaxations.cs
- OutputCacheSection.cs
- TextSegment.cs
- RegionIterator.cs
- DataSourceGroupCollection.cs
- IssuedTokensHeader.cs
- SqlRowUpdatedEvent.cs
- BinHexDecoder.cs
- CommandBindingCollection.cs
- KeysConverter.cs
- _TLSstream.cs
- SqlUdtInfo.cs
- DesignerOptionService.cs
- Variable.cs
- FileLogRecordStream.cs