Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Security / Cryptography / RSAOAEPKeyExchangeFormatter.cs / 1 / RSAOAEPKeyExchangeFormatter.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Security.Cryptography { [System.Runtime.InteropServices.ComVisible(true)] public class RSAOAEPKeyExchangeFormatter : AsymmetricKeyExchangeFormatter { private byte[] ParameterValue; private RSA _rsaKey; private RandomNumberGenerator RngValue; // // public constructors // public RSAOAEPKeyExchangeFormatter() {} public RSAOAEPKeyExchangeFormatter(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); _rsaKey = (RSA) key; } // // public properties // ///public byte[] Parameter { get { if (ParameterValue != null) return (byte[]) ParameterValue.Clone(); return null; } set { if (value != null) ParameterValue = (byte[]) value.Clone(); else ParameterValue = null; } } /// public override String Parameters { get { return null; } } public RandomNumberGenerator Rng { get { return RngValue; } set { RngValue = value; } } // // public methods // public override void SetKey(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); _rsaKey = (RSA) key; } public override byte[] CreateKeyExchange(byte[] rgbData) { if (_rsaKey == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingKey")); if (_rsaKey is RSACryptoServiceProvider) { return ((RSACryptoServiceProvider) _rsaKey).Encrypt(rgbData, true); } else { return Utils.RsaOaepEncrypt(_rsaKey, SHA1.Create(), new PKCS1MaskGenerationMethod(), RandomNumberGenerator.Create(), rgbData); } } public override byte[] CreateKeyExchange(byte[] rgbData, Type symAlgType) { return CreateKeyExchange(rgbData); } } } // 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 RSAOAEPKeyExchangeFormatter : AsymmetricKeyExchangeFormatter { private byte[] ParameterValue; private RSA _rsaKey; private RandomNumberGenerator RngValue; // // public constructors // public RSAOAEPKeyExchangeFormatter() {} public RSAOAEPKeyExchangeFormatter(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); _rsaKey = (RSA) key; } // // public properties // /// public byte[] Parameter { get { if (ParameterValue != null) return (byte[]) ParameterValue.Clone(); return null; } set { if (value != null) ParameterValue = (byte[]) value.Clone(); else ParameterValue = null; } } /// public override String Parameters { get { return null; } } public RandomNumberGenerator Rng { get { return RngValue; } set { RngValue = value; } } // // public methods // public override void SetKey(AsymmetricAlgorithm key) { if (key == null) throw new ArgumentNullException("key"); _rsaKey = (RSA) key; } public override byte[] CreateKeyExchange(byte[] rgbData) { if (_rsaKey == null) throw new CryptographicUnexpectedOperationException(Environment.GetResourceString("Cryptography_MissingKey")); if (_rsaKey is RSACryptoServiceProvider) { return ((RSACryptoServiceProvider) _rsaKey).Encrypt(rgbData, true); } else { return Utils.RsaOaepEncrypt(_rsaKey, SHA1.Create(), new PKCS1MaskGenerationMethod(), RandomNumberGenerator.Create(), rgbData); } } public override byte[] CreateKeyExchange(byte[] rgbData, Type symAlgType) { return CreateKeyExchange(rgbData); } } } // 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
- ModelPerspective.cs
- DataSourceHelper.cs
- ExpressionList.cs
- TopClause.cs
- PeerObject.cs
- ObjectDataSource.cs
- FontUnitConverter.cs
- HostedHttpRequestAsyncResult.cs
- InvalidDataException.cs
- FlowchartDesigner.xaml.cs
- NameNode.cs
- WebControl.cs
- FixedSOMContainer.cs
- Sql8ExpressionRewriter.cs
- CodeTypeDelegate.cs
- NewExpression.cs
- WeakReferenceKey.cs
- CodeDomLocalizationProvider.cs
- RunClient.cs
- TrimSurroundingWhitespaceAttribute.cs
- NullableIntMinMaxAggregationOperator.cs
- SortExpressionBuilder.cs
- NavigationCommands.cs
- EdmSchemaError.cs
- RecordManager.cs
- CharUnicodeInfo.cs
- CommonObjectSecurity.cs
- ChooseAction.cs
- Scheduler.cs
- ImageDrawing.cs
- RsaSecurityTokenAuthenticator.cs
- CodeDOMUtility.cs
- PositiveTimeSpanValidatorAttribute.cs
- SqlConnectionHelper.cs
- PathSegmentCollection.cs
- TextTabProperties.cs
- DataBoundControl.cs
- RemotingConfiguration.cs
- DispatcherTimer.cs
- TimelineGroup.cs
- InfoCardBaseException.cs
- DisableDpiAwarenessAttribute.cs
- WindowHideOrCloseTracker.cs
- XmlSchemaSimpleContentRestriction.cs
- SQLInt64Storage.cs
- SpAudioStreamWrapper.cs
- CultureInfoConverter.cs
- BinaryEditor.cs
- CheckBox.cs
- NamedPermissionSet.cs
- WebPartTransformerCollection.cs
- MetafileHeaderWmf.cs
- Border.cs
- FacetDescription.cs
- StreamUpdate.cs
- TreeNodeCollection.cs
- VisualTarget.cs
- Effect.cs
- ThicknessAnimationBase.cs
- StructuredTypeEmitter.cs
- DSASignatureFormatter.cs
- DataViewManagerListItemTypeDescriptor.cs
- PropertyEntry.cs
- BinaryUtilClasses.cs
- XmlStreamedByteStreamReader.cs
- DataGridViewLinkCell.cs
- JsonFormatGeneratorStatics.cs
- DataControlLinkButton.cs
- XmlWellformedWriter.cs
- DesignerAttributeInfo.cs
- DateTimeSerializationSection.cs
- AspNetHostingPermission.cs
- InProcStateClientManager.cs
- NameValueConfigurationCollection.cs
- WindowsComboBox.cs
- TraceLog.cs
- DbProviderFactoriesConfigurationHandler.cs
- DesignerHelpers.cs
- ProfilePropertyMetadata.cs
- SqlBulkCopy.cs
- VideoDrawing.cs
- HttpClientCertificate.cs
- CommandDevice.cs
- DesignerForm.cs
- categoryentry.cs
- EventProviderBase.cs
- dbdatarecord.cs
- BindUriHelper.cs
- SmtpMail.cs
- TileBrush.cs
- MediaContextNotificationWindow.cs
- MeasurementDCInfo.cs
- DelegatingChannelListener.cs
- EntityClassGenerator.cs
- CodeTypeDelegate.cs
- GridView.cs
- DoubleAnimationBase.cs
- TableFieldsEditor.cs
- EventSinkHelperWriter.cs
- PointHitTestResult.cs