Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // // ==--== // // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BuildTopDownAttribute.cs
- WsiProfilesElementCollection.cs
- Registry.cs
- ObjectViewListener.cs
- DayRenderEvent.cs
- WpfKnownType.cs
- RelationshipEndMember.cs
- JsonFormatGeneratorStatics.cs
- _SslSessionsCache.cs
- SafeViewOfFileHandle.cs
- TheQuery.cs
- BitmapEffectInputData.cs
- RequestBringIntoViewEventArgs.cs
- safelink.cs
- RegularExpressionValidator.cs
- ImportOptions.cs
- DefaultWorkflowSchedulerService.cs
- WebPartZoneCollection.cs
- PhysicalOps.cs
- EvidenceBase.cs
- DataSourceControlBuilder.cs
- AudioStateChangedEventArgs.cs
- CodePageUtils.cs
- DESCryptoServiceProvider.cs
- UInt64Storage.cs
- HtmlElementCollection.cs
- ServiceContractDetailViewControl.cs
- ClientTargetCollection.cs
- FileUpload.cs
- XmlBinaryReader.cs
- RC2.cs
- RepeatButton.cs
- RuleSetDialog.cs
- WebPartMinimizeVerb.cs
- TabControlDesigner.cs
- SoapClientMessage.cs
- MethodBuilderInstantiation.cs
- SafeCoTaskMem.cs
- ClaimComparer.cs
- CssStyleCollection.cs
- PointCollection.cs
- FlowNode.cs
- HitTestParameters.cs
- MaterializeFromAtom.cs
- UIElement3D.cs
- Logging.cs
- HMACSHA384.cs
- PerformanceCounterManager.cs
- TextEditorDragDrop.cs
- SQLDecimal.cs
- Deserializer.cs
- GPStream.cs
- HttpModule.cs
- ThreadStartException.cs
- TextAutomationPeer.cs
- ClientUrlResolverWrapper.cs
- documentation.cs
- DetailsView.cs
- HttpsChannelFactory.cs
- HostVisual.cs
- PointAnimation.cs
- InstanceDescriptor.cs
- OleAutBinder.cs
- RightsManagementEncryptionTransform.cs
- DESCryptoServiceProvider.cs
- Clipboard.cs
- SourceFileBuildProvider.cs
- OleDbTransaction.cs
- FunctionCommandText.cs
- UrlPath.cs
- Icon.cs
- X509ChainElement.cs
- WebPartZoneAutoFormat.cs
- SchemaTypeEmitter.cs
- OleDbException.cs
- MultipleViewPatternIdentifiers.cs
- EntityProxyFactory.cs
- UnsafeNativeMethods.cs
- OleDbDataAdapter.cs
- SystemKeyConverter.cs
- AppSettingsReader.cs
- SqlDataSourceEnumerator.cs
- ConfigurationPropertyAttribute.cs
- MetadataCache.cs
- SecurityStandardsManager.cs
- MenuItem.cs
- FloatSumAggregationOperator.cs
- PathFigure.cs
- VectorAnimationUsingKeyFrames.cs
- PackageDigitalSignature.cs
- ArraySortHelper.cs
- WriterOutput.cs
- ImpersonationContext.cs
- shaper.cs
- ListView.cs
- SqlGenericUtil.cs
- MouseGestureConverter.cs
- RequestContext.cs
- UrlUtility.cs
- SizeAnimationUsingKeyFrames.cs