Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Security / Cryptography / RSAPKCS1KeyExchangeDeformatter.cs / 1305376 / RSAPKCS1KeyExchangeDeformatter.cs
using System.Diagnostics.Contracts; // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // namespace System.Security.Cryptography { [System.Runtime.InteropServices.ComVisible(true)] public class RSAPKCS1KeyExchangeDeformatter : AsymmetricKeyExchangeDeformatter { RSA _rsaKey; RandomNumberGenerator RngValue; // Constructors public RSAPKCS1KeyExchangeDeformatter() {} public RSAPKCS1KeyExchangeDeformatter(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); Contract.EndContractBlock(); _rsaKey = (RSA) key; } // // public properties // public RandomNumberGenerator RNG { get { return RngValue; } set { RngValue = value; } } public override String Parameters { get { return null; } set { ;} } // // public methods // [System.Security.SecuritySafeCritical] // auto-generated public override byte[] DecryptKeyExchange(byte[] rgbIn) { if (_rsaKey == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingKey")); byte[] rgbOut; if (_rsaKey is RSACryptoServiceProvider) { rgbOut = ((RSACryptoServiceProvider) _rsaKey).Decrypt(rgbIn, false); } else { int i; byte[] rgb; rgb = _rsaKey.DecryptValue(rgbIn); // // Expected format is: // 00 || 02 || PS || 00 || D // where PS does not contain any zeros. // for (i = 2; i= rgb.Length) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_PKCS1Decoding")); i++; // Skip over the zero rgbOut = new byte[rgb.Length - i]; Buffer.InternalBlockCopy(rgb, i, rgbOut, 0, rgbOut.Length); } return rgbOut; } public override void SetKey(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); Contract.EndContractBlock(); _rsaKey = (RSA) key; } } } // 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
- FlowDocumentScrollViewerAutomationPeer.cs
- XomlCompilerError.cs
- UseAttributeSetsAction.cs
- TreeViewItem.cs
- SamlNameIdentifierClaimResource.cs
- SelectionProcessor.cs
- OdbcParameterCollection.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- ToolStripMenuItem.cs
- ImageCodecInfoPrivate.cs
- Relationship.cs
- WebHttpBinding.cs
- Int16Animation.cs
- SelectingProviderEventArgs.cs
- XamlReader.cs
- WebPartCollection.cs
- Pool.cs
- PolygonHotSpot.cs
- MachineKeyConverter.cs
- objectquery_tresulttype.cs
- CategoryGridEntry.cs
- CloseSequenceResponse.cs
- HttpCapabilitiesSectionHandler.cs
- PointAnimationUsingKeyFrames.cs
- TTSEngineTypes.cs
- CharAnimationBase.cs
- X509Certificate.cs
- QueryExpr.cs
- XhtmlConformanceSection.cs
- ActivitySurrogateSelector.cs
- WarningException.cs
- DataGridViewColumnTypePicker.cs
- ToolStripMenuItem.cs
- LifetimeServices.cs
- ReflectEventDescriptor.cs
- ContractCodeDomInfo.cs
- ParameterElement.cs
- DoubleIndependentAnimationStorage.cs
- TreeWalker.cs
- TraceShell.cs
- log.cs
- XmlSchemaValidator.cs
- OracleInfoMessageEventArgs.cs
- GraphicsPathIterator.cs
- SoapTypeAttribute.cs
- TabRenderer.cs
- DesignerWebPartChrome.cs
- ContextStack.cs
- DictionarySectionHandler.cs
- BitmapEncoder.cs
- SqlUtils.cs
- ArcSegment.cs
- ModuleElement.cs
- ReferenceConverter.cs
- Point3DCollection.cs
- BitmapEffectInputData.cs
- ZoneIdentityPermission.cs
- XmlNodeReader.cs
- DocumentPageView.cs
- ActivationServices.cs
- WebServiceClientProxyGenerator.cs
- keycontainerpermission.cs
- QilList.cs
- ElementUtil.cs
- HyperLinkColumn.cs
- BuiltInExpr.cs
- SeverityFilter.cs
- Pair.cs
- PolygonHotSpot.cs
- WindowAutomationPeer.cs
- TextStore.cs
- ErrorView.xaml.cs
- PhoneCallDesigner.cs
- Choices.cs
- IgnoreFileBuildProvider.cs
- FactoryGenerator.cs
- DiscoveryReferences.cs
- InfoCardTraceRecord.cs
- XmlSchemaImporter.cs
- QilGenerator.cs
- Socket.cs
- ParsedAttributeCollection.cs
- GenerateScriptTypeAttribute.cs
- CompilationSection.cs
- SwitchLevelAttribute.cs
- DataGridViewLinkColumn.cs
- ISFClipboardData.cs
- WebPartTracker.cs
- OdbcHandle.cs
- PageHandlerFactory.cs
- Decoder.cs
- DesignerCatalogPartChrome.cs
- CodeConstructor.cs
- PrintDocument.cs
- DocumentGridPage.cs
- PerformanceCountersElement.cs
- VirtualPathUtility.cs
- InProcStateClientManager.cs
- RangeExpression.cs
- ManipulationBoundaryFeedbackEventArgs.cs