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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OutputCacheSection.cs
- WebBaseEventKeyComparer.cs
- MembershipPasswordException.cs
- PageFunction.cs
- AxImporter.cs
- HMACMD5.cs
- CommandEventArgs.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- RSAPKCS1SignatureFormatter.cs
- SystemWebSectionGroup.cs
- Rectangle.cs
- BooleanExpr.cs
- EventDescriptorCollection.cs
- ImmutableCommunicationTimeouts.cs
- DesignerForm.cs
- AccessDataSource.cs
- webeventbuffer.cs
- XmlIlGenerator.cs
- ReferenceList.cs
- XmlDocument.cs
- BrowserCapabilitiesCompiler.cs
- XmlUrlEditor.cs
- SqlProfileProvider.cs
- ListBoxItem.cs
- DropShadowEffect.cs
- TextHintingModeValidation.cs
- AccessibleObject.cs
- ConfigurationValidatorAttribute.cs
- CodeIterationStatement.cs
- SpeechDetectedEventArgs.cs
- AmbientProperties.cs
- BitmapData.cs
- AssemblyResourceLoader.cs
- TypeListConverter.cs
- SkinIDTypeConverter.cs
- ExpressionBuilderContext.cs
- CodeAttributeDeclaration.cs
- CommonDialog.cs
- HuffCodec.cs
- FlowDocumentFormatter.cs
- NetStream.cs
- TypeExtensions.cs
- VirtualizingStackPanel.cs
- ModelUIElement3D.cs
- ScriptManagerProxy.cs
- PolicyChain.cs
- ByteStorage.cs
- ReferencedCollectionType.cs
- DataGridViewTopRowAccessibleObject.cs
- TableStyle.cs
- SystemIPAddressInformation.cs
- AssemblyCollection.cs
- MeshGeometry3D.cs
- AsymmetricAlgorithm.cs
- AuthStoreRoleProvider.cs
- OverrideMode.cs
- DataSourceConverter.cs
- WebPartPersonalization.cs
- DataGridPageChangedEventArgs.cs
- EventLogger.cs
- SymbolMethod.cs
- UnsafeNativeMethodsCLR.cs
- DataColumnCollection.cs
- Token.cs
- HybridCollection.cs
- PropertyEmitter.cs
- PageCodeDomTreeGenerator.cs
- DummyDataSource.cs
- SuppressIldasmAttribute.cs
- ParameterRefs.cs
- ColorIndependentAnimationStorage.cs
- StorageTypeMapping.cs
- EventWaitHandle.cs
- SystemUnicastIPAddressInformation.cs
- TimeSpanValidatorAttribute.cs
- FormatConvertedBitmap.cs
- TextWriter.cs
- MenuItem.cs
- UIElement3D.cs
- ImageClickEventArgs.cs
- DataGridViewColumnStateChangedEventArgs.cs
- MethodSignatureGenerator.cs
- Token.cs
- XmlComplianceUtil.cs
- SectionInformation.cs
- ServicePointManager.cs
- InkPresenterAutomationPeer.cs
- Operator.cs
- DbParameterHelper.cs
- WebConfigurationHost.cs
- HttpModulesSection.cs
- templategroup.cs
- ChangeInterceptorAttribute.cs
- SettingsPropertyValueCollection.cs
- LinkButton.cs
- AsymmetricSecurityProtocolFactory.cs
- DataGridViewCellValidatingEventArgs.cs
- ProfileSettings.cs
- BaseConfigurationRecord.cs
- X509RawDataKeyIdentifierClause.cs