Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PointLightBase.cs
- WebSysDisplayNameAttribute.cs
- MeshGeometry3D.cs
- ADMembershipUser.cs
- XslAstAnalyzer.cs
- AxisAngleRotation3D.cs
- FocusWithinProperty.cs
- SelectedPathEditor.cs
- RowBinding.cs
- CompareValidator.cs
- XPathNavigatorReader.cs
- DatePickerAutomationPeer.cs
- XmlCollation.cs
- MediaScriptCommandRoutedEventArgs.cs
- ToolStripTextBox.cs
- PagesSection.cs
- Decimal.cs
- DoWorkEventArgs.cs
- UIElementHelper.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- WSDualHttpBindingCollectionElement.cs
- LambdaValue.cs
- NativeMethods.cs
- ThreadExceptionDialog.cs
- LogManagementAsyncResult.cs
- InstallerTypeAttribute.cs
- SyndicationItemFormatter.cs
- SecurityTokenReferenceStyle.cs
- TextFormatterContext.cs
- HideDisabledControlAdapter.cs
- HandledEventArgs.cs
- CheckBoxRenderer.cs
- KeyNameIdentifierClause.cs
- RemoveFromCollection.cs
- EpmContentSerializer.cs
- GenericTextProperties.cs
- ComplexPropertyEntry.cs
- WmlTextViewAdapter.cs
- KeyPressEvent.cs
- RightNameExpirationInfoPair.cs
- LogicalExpr.cs
- MaskedTextProvider.cs
- DuplicateWaitObjectException.cs
- DataQuery.cs
- DescendantQuery.cs
- FrameworkContentElementAutomationPeer.cs
- ReflectTypeDescriptionProvider.cs
- LocalFileSettingsProvider.cs
- GPPOINT.cs
- ClientBuildManagerCallback.cs
- StringSource.cs
- BinaryObjectInfo.cs
- LayoutEngine.cs
- IProvider.cs
- exports.cs
- SiteMapProvider.cs
- NativeBuffer.cs
- MenuItemStyleCollection.cs
- XmlSchemaObjectTable.cs
- EdmToObjectNamespaceMap.cs
- PointCollection.cs
- TreeNode.cs
- SerializationException.cs
- DependencyObjectType.cs
- PageContentAsyncResult.cs
- IOThreadScheduler.cs
- WebPartZoneBase.cs
- ValueUtilsSmi.cs
- mda.cs
- sqlmetadatafactory.cs
- DbSourceParameterCollection.cs
- DragEventArgs.cs
- XPathDocumentBuilder.cs
- ThicknessAnimationUsingKeyFrames.cs
- CheckBoxField.cs
- SystemFonts.cs
- HtmlHead.cs
- SessionPageStatePersister.cs
- DoWorkEventArgs.cs
- DisposableCollectionWrapper.cs
- HtmlToClrEventProxy.cs
- OleDbError.cs
- Int16Storage.cs
- State.cs
- sitestring.cs
- MissingMethodException.cs
- SiteMapNodeItem.cs
- Inline.cs
- StylusTip.cs
- SeverityFilter.cs
- Subtract.cs
- AppSettingsSection.cs
- GridItemCollection.cs
- QilScopedVisitor.cs
- XmlBaseReader.cs
- ManifestSignatureInformation.cs
- MembershipUser.cs
- DrawingGroupDrawingContext.cs
- QuotaThrottle.cs
- SettingsPropertyIsReadOnlyException.cs