Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Security / Cryptography / Rijndael.cs / 1 / Rijndael.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // Rijndael.cs // namespace System.Security.Cryptography { [System.Runtime.InteropServices.ComVisible(true)] public abstract class Rijndael : SymmetricAlgorithm { private static KeySizes[] s_legalBlockSizes = { new KeySizes(128, 256, 64) }; private static KeySizes[] s_legalKeySizes = { new KeySizes(128, 256, 64) }; // // protected constructors // protected Rijndael() { KeySizeValue = 256; BlockSizeValue = 128; FeedbackSizeValue = BlockSizeValue; LegalBlockSizesValue = s_legalBlockSizes; LegalKeySizesValue = s_legalKeySizes; } // // public methods // new static public Rijndael Create() { return Create("System.Security.Cryptography.Rijndael"); } new static public Rijndael Create(String algName) { return (Rijndael) CryptoConfig.CreateFromName(algName); } } } // 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
- SecurityTokenAuthenticator.cs
- QilXmlReader.cs
- ErrorInfoXmlDocument.cs
- CheckBoxBaseAdapter.cs
- Trace.cs
- CustomErrorsSection.cs
- WebPartEditorApplyVerb.cs
- WebZone.cs
- Padding.cs
- SelfSignedCertificate.cs
- Wildcard.cs
- Cursors.cs
- KeyedCollection.cs
- KeyTimeConverter.cs
- LinkedList.cs
- HiddenFieldDesigner.cs
- FrugalList.cs
- TokenBasedSet.cs
- WebBrowserUriTypeConverter.cs
- StringValidator.cs
- InputLanguageCollection.cs
- XsltInput.cs
- IPAddressCollection.cs
- InfoCardProofToken.cs
- HTTP_SERVICE_CONFIG_URLACL_PARAM.cs
- WorkflowQueuingService.cs
- ComponentResourceManager.cs
- EnterpriseServicesHelper.cs
- PolyBezierSegment.cs
- ButtonStandardAdapter.cs
- TaskExtensions.cs
- UnsafeNativeMethods.cs
- COM2PictureConverter.cs
- CharacterHit.cs
- SqlRowUpdatedEvent.cs
- FactoryId.cs
- Stylesheet.cs
- CalendarDateRange.cs
- VectorAnimationBase.cs
- CallbackHandler.cs
- CursorInteropHelper.cs
- WindowsPen.cs
- ExpressionPrefixAttribute.cs
- XmlNodeList.cs
- SAPICategories.cs
- ToolboxBitmapAttribute.cs
- MembershipValidatePasswordEventArgs.cs
- TrustLevelCollection.cs
- ProxyWebPart.cs
- DeflateStream.cs
- XPathNavigatorReader.cs
- SqlStream.cs
- LoginUtil.cs
- EventLog.cs
- TextViewBase.cs
- PathTooLongException.cs
- SchemaImporterExtensionsSection.cs
- GeneratedCodeAttribute.cs
- DataRecord.cs
- TextServicesCompartment.cs
- WindowVisualStateTracker.cs
- IdleTimeoutMonitor.cs
- FontStretchConverter.cs
- QueryOutputWriter.cs
- WindowsFormsHostAutomationPeer.cs
- XmlEncoding.cs
- FragmentQueryProcessor.cs
- ErasingStroke.cs
- ChangeTracker.cs
- DataSourceControlBuilder.cs
- XmlChildNodes.cs
- AttributeUsageAttribute.cs
- InputScopeNameConverter.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- TextViewElement.cs
- SelectingProviderEventArgs.cs
- TimelineGroup.cs
- XmlSchemaAttribute.cs
- ResumeStoryboard.cs
- ViewKeyConstraint.cs
- SecurityTokenRequirement.cs
- Icon.cs
- RegistryPermission.cs
- ListDictionaryInternal.cs
- HttpCapabilitiesBase.cs
- DataGridViewCellFormattingEventArgs.cs
- RectAnimationBase.cs
- WorkflowServiceAttributesTypeConverter.cs
- DatePickerAutomationPeer.cs
- PartialArray.cs
- ResourceExpression.cs
- ModelProperty.cs
- SqlGenerator.cs
- SubordinateTransaction.cs
- SecurityKeyIdentifierClause.cs
- MetadataSource.cs
- GeneratedContractType.cs
- Baml2006KeyRecord.cs
- RecordConverter.cs
- WSFederationHttpSecurityElement.cs