Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Cryptography / RSAPKCS1SignatureDeformatter.cs / 1305376 / RSAPKCS1SignatureDeformatter.cs
using System.Diagnostics.Contracts; // ==++== // // 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"); Contract.EndContractBlock(); _rsaKey = (RSA) key; } // // public methods // public override void SetKey(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); Contract.EndContractBlock(); _rsaKey = (RSA) key; } public override void SetHashAlgorithm(String strName) { _strOID = CryptoConfig.MapNameToOID(strName); } [System.Security.SecuritySafeCritical] // auto-generated public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) { if (rgbHash == null) throw new ArgumentNullException("rgbHash"); if (rgbSignature == null) throw new ArgumentNullException("rgbSignature"); Contract.EndContractBlock(); if (_strOID == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingOID")); if (_rsaKey == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingKey")); // 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. using System.Diagnostics.Contracts; // ==++== // // 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"); Contract.EndContractBlock(); _rsaKey = (RSA) key; } // // public methods // public override void SetKey(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); Contract.EndContractBlock(); _rsaKey = (RSA) key; } public override void SetHashAlgorithm(String strName) { _strOID = CryptoConfig.MapNameToOID(strName); } [System.Security.SecuritySafeCritical] // auto-generated public override bool VerifySignature(byte[] rgbHash, byte[] rgbSignature) { if (rgbHash == null) throw new ArgumentNullException("rgbHash"); if (rgbSignature == null) throw new ArgumentNullException("rgbSignature"); Contract.EndContractBlock(); if (_strOID == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingOID")); if (_rsaKey == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingKey")); // 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
- WebHttpBinding.cs
- FormViewModeEventArgs.cs
- FileAuthorizationModule.cs
- MatrixUtil.cs
- HttpProfileGroupBase.cs
- PolicyFactory.cs
- ScriptingJsonSerializationSection.cs
- PeerEndPoint.cs
- PopupRoot.cs
- ScriptServiceAttribute.cs
- ApplicationGesture.cs
- Vector3dCollection.cs
- DataGridViewCellParsingEventArgs.cs
- Matrix3D.cs
- SmiTypedGetterSetter.cs
- XmlUrlResolver.cs
- ObjectItemConventionAssemblyLoader.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- documentsequencetextcontainer.cs
- AppSettingsSection.cs
- BaseTreeIterator.cs
- SplitterCancelEvent.cs
- __TransparentProxy.cs
- Table.cs
- EncoderFallback.cs
- CreateRefExpr.cs
- SqlConnectionString.cs
- AttachedAnnotationChangedEventArgs.cs
- WeakEventManager.cs
- TransportBindingElement.cs
- PerspectiveCamera.cs
- _Rfc2616CacheValidators.cs
- PrefixQName.cs
- DataGridViewHitTestInfo.cs
- WindowsListViewScroll.cs
- RootBrowserWindow.cs
- HttpGetServerProtocol.cs
- OneOfConst.cs
- TypeDescriptionProviderAttribute.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- EventProvider.cs
- XmlChildNodes.cs
- EntityAdapter.cs
- IPEndPoint.cs
- RepeatButtonAutomationPeer.cs
- ItemTypeToolStripMenuItem.cs
- ToolStripDropDownItemDesigner.cs
- BuildManager.cs
- DetailsViewDeleteEventArgs.cs
- RequestResizeEvent.cs
- MenuStrip.cs
- DefaultDiscoveryService.cs
- ContentPlaceHolder.cs
- ButtonPopupAdapter.cs
- ClientTargetCollection.cs
- HMACMD5.cs
- EntitySet.cs
- DeflateEmulationStream.cs
- CommandBindingCollection.cs
- LookupNode.cs
- XsdBuildProvider.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- KeysConverter.cs
- DrawingContext.cs
- PriorityRange.cs
- BinaryMethodMessage.cs
- versioninfo.cs
- SQLDoubleStorage.cs
- XmlSchemaObjectTable.cs
- _ChunkParse.cs
- DeploymentSectionCache.cs
- HttpVersion.cs
- StringAnimationUsingKeyFrames.cs
- QuarticEase.cs
- ScrollProviderWrapper.cs
- SafeFileMappingHandle.cs
- PropertyFilterAttribute.cs
- Sql8ConformanceChecker.cs
- OleDbRowUpdatingEvent.cs
- TokenBasedSet.cs
- OdbcPermission.cs
- ThreadStateException.cs
- WindowsSspiNegotiation.cs
- SuppressMergeCheckAttribute.cs
- SqlXmlStorage.cs
- DBConcurrencyException.cs
- BindingMAnagerBase.cs
- HttpCapabilitiesBase.cs
- DesignerSerializationOptionsAttribute.cs
- RequestTimeoutManager.cs
- TraceContextEventArgs.cs
- OleDbCommand.cs
- XmlValueConverter.cs
- FormParameter.cs
- WebPartsSection.cs
- TrackingMemoryStreamFactory.cs
- ManagementDateTime.cs
- TraceData.cs
- COM2TypeInfoProcessor.cs
- _NetworkingPerfCounters.cs