Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Security / Cryptography / RSAPKCS1KeyExchangeDeformatter.cs / 1 / RSAPKCS1KeyExchangeDeformatter.cs
// ==++== // // 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"); _rsaKey = (RSA) key; } // // public properties // public RandomNumberGenerator RNG { get { return RngValue; } set { RngValue = value; } } public override String Parameters { get { return null; } set { ;} } // // public methods // 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"); _rsaKey = (RSA) key; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // 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"); _rsaKey = (RSA) key; } // // public properties // public RandomNumberGenerator RNG { get { return RngValue; } set { RngValue = value; } } public override String Parameters { get { return null; } set { ;} } // // public methods // 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"); _rsaKey = (RSA) key; } } } // 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
- Propagator.cs
- CodeIndexerExpression.cs
- GeometryDrawing.cs
- CalendarDataBindingHandler.cs
- DocumentPageViewAutomationPeer.cs
- WebPartConnectionsConnectVerb.cs
- XmlSerializer.cs
- RuntimeDelegateArgument.cs
- FileUpload.cs
- ImpersonationContext.cs
- DocumentPageHost.cs
- ContextMenuStrip.cs
- Panel.cs
- VariantWrapper.cs
- ProxySimple.cs
- BamlResourceSerializer.cs
- TemplateControlBuildProvider.cs
- EntityContainer.cs
- Font.cs
- SQLInt32Storage.cs
- BaseDataBoundControl.cs
- RequestQueryParser.cs
- WebWorkflowRole.cs
- HtmlControlPersistable.cs
- IriParsingElement.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- BlurBitmapEffect.cs
- TitleStyle.cs
- MetadataArtifactLoaderFile.cs
- FilePrompt.cs
- WebContext.cs
- EdgeModeValidation.cs
- StateBag.cs
- BuildManagerHost.cs
- TransformerInfo.cs
- ParserHooks.cs
- RuleConditionDialog.Designer.cs
- Ref.cs
- TextTreeTextElementNode.cs
- _AutoWebProxyScriptEngine.cs
- GridEntry.cs
- ToolStripRendererSwitcher.cs
- PageTheme.cs
- DetailsViewCommandEventArgs.cs
- MessageHeaderInfoTraceRecord.cs
- IApplicationTrustManager.cs
- SafeCryptoHandles.cs
- _NetRes.cs
- TriState.cs
- ContextMenuAutomationPeer.cs
- CharEntityEncoderFallback.cs
- FixUp.cs
- SelectionUIHandler.cs
- TrustManager.cs
- Regex.cs
- ColorAnimation.cs
- InternalBufferOverflowException.cs
- ListMarkerLine.cs
- FormsAuthenticationTicket.cs
- TextTrailingCharacterEllipsis.cs
- ProxyWebPartManager.cs
- AsnEncodedData.cs
- WindowsFormsHelpers.cs
- Pair.cs
- InvalidDocumentContentsException.cs
- ProfileSettings.cs
- XmlProcessingInstruction.cs
- WhitespaceRuleLookup.cs
- ExpandoObject.cs
- counter.cs
- XmlILConstructAnalyzer.cs
- AccessDataSourceDesigner.cs
- OdbcConnectionString.cs
- dataobject.cs
- MainMenu.cs
- ToolStripDropDownItem.cs
- ResourceContainerWrapper.cs
- OleDbParameter.cs
- DataGridView.cs
- XmlSchemaProviderAttribute.cs
- CryptographicAttribute.cs
- SqlWorkflowPersistenceService.cs
- RuntimeHandles.cs
- DNS.cs
- QilIterator.cs
- EdmComplexTypeAttribute.cs
- StorageMappingItemLoader.cs
- SQLBinaryStorage.cs
- ProxyGenerator.cs
- XsltException.cs
- New.cs
- XmlAttribute.cs
- ModelTreeEnumerator.cs
- OutputChannel.cs
- DataTableMappingCollection.cs
- TextRunTypographyProperties.cs
- Line.cs
- TemplateLookupAction.cs
- ClientSession.cs
- XNodeSchemaApplier.cs