Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Security / Cryptography / CngKeyBlobFormat.cs / 1305376 / CngKeyBlobFormat.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== using System; using System.Diagnostics.Contracts; namespace System.Security.Cryptography { ////// Utility class to strongly type the format of key blobs used with CNG. Since all CNG APIs which /// require or return a key blob format take the name as a string, we use this string wrapper class to /// specifically mark which parameters and return values are expected to be key blob formats. We also /// provide a list of well known blob formats, which helps Intellisense users find a set of good blob /// formats to use. /// [Serializable] [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public sealed class CngKeyBlobFormat : IEquatable{ private static CngKeyBlobFormat s_eccPrivate; private static CngKeyBlobFormat s_eccPublic; private static CngKeyBlobFormat s_genericPrivate; private static CngKeyBlobFormat s_genericPublic; private static CngKeyBlobFormat s_opaqueTransport; private static CngKeyBlobFormat s_pkcs8Private; private string m_format; public CngKeyBlobFormat(string format) { Contract.Ensures(!String.IsNullOrEmpty(m_format)); if (format == null) { throw new ArgumentNullException("format"); } if (format.Length == 0) { throw new ArgumentException(SR.GetString(SR.Cryptography_InvalidKeyBlobFormat, format), "format"); } m_format = format; } /// /// Name of the blob format /// public string Format { get { Contract.Ensures(!String.IsNullOrEmpty(Contract.Result())); return m_format; } } public static bool operator ==(CngKeyBlobFormat left, CngKeyBlobFormat right) { if (Object.ReferenceEquals(left, null)) { return Object.ReferenceEquals(right, null); } return left.Equals(right); } [Pure] public static bool operator !=(CngKeyBlobFormat left, CngKeyBlobFormat right) { if (Object.ReferenceEquals(left, null)) { return !Object.ReferenceEquals(right, null); } return !left.Equals(right); } public override bool Equals(object obj) { Contract.Assert(m_format != null); return Equals(obj as CngKeyBlobFormat); } public bool Equals(CngKeyBlobFormat other) { if (Object.ReferenceEquals(other, null)) { return false; } return m_format.Equals(other.Format); } public override int GetHashCode() { Contract.Assert(m_format != null); return m_format.GetHashCode(); } public override string ToString() { Contract.Assert(m_format != null); return m_format; } // // Well known key blob formats // public static CngKeyBlobFormat EccPrivateBlob { get { Contract.Ensures(Contract.Result () != null); if (s_eccPrivate == null) { s_eccPrivate = new CngKeyBlobFormat("ECCPRIVATEBLOB"); // BCRYPT_ECCPRIVATE_BLOB } return s_eccPrivate; } } public static CngKeyBlobFormat EccPublicBlob { get { Contract.Ensures(Contract.Result () != null); if (s_eccPublic == null) { s_eccPublic = new CngKeyBlobFormat("ECCPUBLICBLOB"); // BCRYPT_ECCPUBLIC_BLOB } return s_eccPublic; } } public static CngKeyBlobFormat GenericPrivateBlob { get { Contract.Ensures(Contract.Result () != null); if (s_genericPrivate == null) { s_genericPrivate = new CngKeyBlobFormat("PRIVATEBLOB"); // BCRYPT_PRIVATE_KEY_BLOB } return s_genericPrivate; } } public static CngKeyBlobFormat GenericPublicBlob { get { Contract.Ensures(Contract.Result () != null); if (s_genericPublic == null) { s_genericPublic = new CngKeyBlobFormat("PUBLICBLOB"); // BCRYPT_PUBLIC_KEY_BLOB } return s_genericPublic; } } public static CngKeyBlobFormat OpaqueTransportBlob { get { Contract.Ensures(Contract.Result () != null); if (s_opaqueTransport == null) { s_opaqueTransport = new CngKeyBlobFormat("OpaqueTransport"); // NCRYPT_OPAQUETRANSPORT_BLOB } return s_opaqueTransport; } } public static CngKeyBlobFormat Pkcs8PrivateBlob { get { Contract.Ensures(Contract.Result () != null); if (s_pkcs8Private == null) { s_pkcs8Private = new CngKeyBlobFormat("PKCS8_PRIVATEKEY"); // NCRYPT_PKCS8_PRIVATE_KEY_BLOB } return s_pkcs8Private; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== using System; using System.Diagnostics.Contracts; namespace System.Security.Cryptography { /// /// Utility class to strongly type the format of key blobs used with CNG. Since all CNG APIs which /// require or return a key blob format take the name as a string, we use this string wrapper class to /// specifically mark which parameters and return values are expected to be key blob formats. We also /// provide a list of well known blob formats, which helps Intellisense users find a set of good blob /// formats to use. /// [Serializable] [System.Security.Permissions.HostProtection(MayLeakOnAbort = true)] public sealed class CngKeyBlobFormat : IEquatable{ private static CngKeyBlobFormat s_eccPrivate; private static CngKeyBlobFormat s_eccPublic; private static CngKeyBlobFormat s_genericPrivate; private static CngKeyBlobFormat s_genericPublic; private static CngKeyBlobFormat s_opaqueTransport; private static CngKeyBlobFormat s_pkcs8Private; private string m_format; public CngKeyBlobFormat(string format) { Contract.Ensures(!String.IsNullOrEmpty(m_format)); if (format == null) { throw new ArgumentNullException("format"); } if (format.Length == 0) { throw new ArgumentException(SR.GetString(SR.Cryptography_InvalidKeyBlobFormat, format), "format"); } m_format = format; } /// /// Name of the blob format /// public string Format { get { Contract.Ensures(!String.IsNullOrEmpty(Contract.Result())); return m_format; } } public static bool operator ==(CngKeyBlobFormat left, CngKeyBlobFormat right) { if (Object.ReferenceEquals(left, null)) { return Object.ReferenceEquals(right, null); } return left.Equals(right); } [Pure] public static bool operator !=(CngKeyBlobFormat left, CngKeyBlobFormat right) { if (Object.ReferenceEquals(left, null)) { return !Object.ReferenceEquals(right, null); } return !left.Equals(right); } public override bool Equals(object obj) { Contract.Assert(m_format != null); return Equals(obj as CngKeyBlobFormat); } public bool Equals(CngKeyBlobFormat other) { if (Object.ReferenceEquals(other, null)) { return false; } return m_format.Equals(other.Format); } public override int GetHashCode() { Contract.Assert(m_format != null); return m_format.GetHashCode(); } public override string ToString() { Contract.Assert(m_format != null); return m_format; } // // Well known key blob formats // public static CngKeyBlobFormat EccPrivateBlob { get { Contract.Ensures(Contract.Result () != null); if (s_eccPrivate == null) { s_eccPrivate = new CngKeyBlobFormat("ECCPRIVATEBLOB"); // BCRYPT_ECCPRIVATE_BLOB } return s_eccPrivate; } } public static CngKeyBlobFormat EccPublicBlob { get { Contract.Ensures(Contract.Result () != null); if (s_eccPublic == null) { s_eccPublic = new CngKeyBlobFormat("ECCPUBLICBLOB"); // BCRYPT_ECCPUBLIC_BLOB } return s_eccPublic; } } public static CngKeyBlobFormat GenericPrivateBlob { get { Contract.Ensures(Contract.Result () != null); if (s_genericPrivate == null) { s_genericPrivate = new CngKeyBlobFormat("PRIVATEBLOB"); // BCRYPT_PRIVATE_KEY_BLOB } return s_genericPrivate; } } public static CngKeyBlobFormat GenericPublicBlob { get { Contract.Ensures(Contract.Result () != null); if (s_genericPublic == null) { s_genericPublic = new CngKeyBlobFormat("PUBLICBLOB"); // BCRYPT_PUBLIC_KEY_BLOB } return s_genericPublic; } } public static CngKeyBlobFormat OpaqueTransportBlob { get { Contract.Ensures(Contract.Result () != null); if (s_opaqueTransport == null) { s_opaqueTransport = new CngKeyBlobFormat("OpaqueTransport"); // NCRYPT_OPAQUETRANSPORT_BLOB } return s_opaqueTransport; } } public static CngKeyBlobFormat Pkcs8PrivateBlob { get { Contract.Ensures(Contract.Result () != null); if (s_pkcs8Private == null) { s_pkcs8Private = new CngKeyBlobFormat("PKCS8_PRIVATEKEY"); // NCRYPT_PKCS8_PRIVATE_KEY_BLOB } return s_pkcs8Private; } } } } // 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
- WindowsFont.cs
- ToolboxItemFilterAttribute.cs
- SymbolMethod.cs
- ReaderWriterLockWrapper.cs
- BoundField.cs
- ByteFacetDescriptionElement.cs
- RectAnimationClockResource.cs
- MimeMultiPart.cs
- OleDbCommand.cs
- ErrorTableItemStyle.cs
- PopOutPanel.cs
- DomNameTable.cs
- RepeatInfo.cs
- ServiceObjectContainer.cs
- ProfileService.cs
- FontUnitConverter.cs
- ResumeStoryboard.cs
- EncoderParameters.cs
- EventDescriptor.cs
- EventManager.cs
- RepeaterItemEventArgs.cs
- SqlDuplicator.cs
- CopyNamespacesAction.cs
- CopyAction.cs
- ToolStripDesigner.cs
- BitmapMetadataBlob.cs
- MimeReturn.cs
- CompiledQuery.cs
- QuinticEase.cs
- ToolStripDropDownClosingEventArgs.cs
- InvalidDataContractException.cs
- ScrollData.cs
- StateManagedCollection.cs
- TypeGeneratedEventArgs.cs
- ProcessThread.cs
- OracleFactory.cs
- Preprocessor.cs
- MetaTableHelper.cs
- StateDesigner.LayoutSelectionGlyph.cs
- MatrixKeyFrameCollection.cs
- Compress.cs
- DrawItemEvent.cs
- EventEntry.cs
- OperationParameterInfo.cs
- TextSegment.cs
- Int16Storage.cs
- DbgCompiler.cs
- Int32Converter.cs
- NameValueFileSectionHandler.cs
- X509UI.cs
- ByteStreamGeometryContext.cs
- DeploymentExceptionMapper.cs
- SafeNativeMethodsCLR.cs
- CategoryAttribute.cs
- HandlerFactoryWrapper.cs
- ToolboxItemWrapper.cs
- StorageMappingItemLoader.cs
- SystemWebExtensionsSectionGroup.cs
- ReferenceEqualityComparer.cs
- XPathExpr.cs
- HotSpotCollection.cs
- InvalidOperationException.cs
- StringConcat.cs
- MobileControlBuilder.cs
- ReferenceConverter.cs
- ConstraintConverter.cs
- SqlClientWrapperSmiStream.cs
- IdleTimeoutMonitor.cs
- WebBrowserNavigatingEventHandler.cs
- SettingsAttributes.cs
- DynamicDataExtensions.cs
- LineSegment.cs
- ClientSettingsSection.cs
- TransformCollection.cs
- SystemIPInterfaceStatistics.cs
- XmlDictionaryReader.cs
- FreezableOperations.cs
- TraceListener.cs
- HostSecurityManager.cs
- WindowsUpDown.cs
- SubMenuStyleCollection.cs
- DispatcherHookEventArgs.cs
- MissingMemberException.cs
- HtmlPhoneCallAdapter.cs
- RTLAwareMessageBox.cs
- MachineKeyConverter.cs
- CreateDataSourceDialog.cs
- ScriptControlManager.cs
- Qualifier.cs
- SqlDataSourceSelectingEventArgs.cs
- ViewStateException.cs
- OleDbConnectionInternal.cs
- BindingContext.cs
- DataGridCell.cs
- ObjectDataSourceFilteringEventArgs.cs
- ClientFormsIdentity.cs
- HttpCookie.cs
- UnsafeNativeMethods.cs
- AudioStateChangedEventArgs.cs
- Pen.cs