Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / Mail / SmtpDigestAuthenticationModule.cs / 5 / SmtpDigestAuthenticationModule.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mail { using System; using System.Collections; using System.IO; using System.Net; using System.Security.Permissions; // #if MAKE_MAILCLIENT_PUBLIC internal #else internal #endif class SmtpDigestAuthenticationModule : ISmtpAuthenticationModule { Hashtable sessions = new Hashtable(); internal SmtpDigestAuthenticationModule() { } #region ISmtpAuthenticationModule Members // Security this method will access NetworkCredential properties that demand UnmanagedCode and Environment Permission [EnvironmentPermission(SecurityAction.Assert, Unrestricted=true)] [SecurityPermission(SecurityAction.Assert, Flags=SecurityPermissionFlag.UnmanagedCode)] public Authorization Authenticate(string challenge, NetworkCredential credential, object sessionCookie) { lock (this.sessions) { NTAuthentication clientContext = this.sessions[sessionCookie] as NTAuthentication; if (clientContext == null) { if(credential == null){ return null; } // this.sessions[sessionCookie] = clientContext = new NTAuthentication(false,"WDigest",credential,null, ContextFlags.Connection); } string resp = (challenge != null ? clientContext.GetOutgoingBlob(challenge) : clientContext.GetOutgoingBlob(null)); if (!clientContext.IsCompleted) { return new Authorization(resp, false); } else { this.sessions.Remove(sessionCookie); return new Authorization(resp, true); } } } public string AuthenticationType { get { return "WDigest"; } } public void CloseContext(object sessionCookie) { // This is a no-op since the context is not // kept open by this module beyond auth completion. } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Mail { using System; using System.Collections; using System.IO; using System.Net; using System.Security.Permissions; // #if MAKE_MAILCLIENT_PUBLIC internal #else internal #endif class SmtpDigestAuthenticationModule : ISmtpAuthenticationModule { Hashtable sessions = new Hashtable(); internal SmtpDigestAuthenticationModule() { } #region ISmtpAuthenticationModule Members // Security this method will access NetworkCredential properties that demand UnmanagedCode and Environment Permission [EnvironmentPermission(SecurityAction.Assert, Unrestricted=true)] [SecurityPermission(SecurityAction.Assert, Flags=SecurityPermissionFlag.UnmanagedCode)] public Authorization Authenticate(string challenge, NetworkCredential credential, object sessionCookie) { lock (this.sessions) { NTAuthentication clientContext = this.sessions[sessionCookie] as NTAuthentication; if (clientContext == null) { if(credential == null){ return null; } // this.sessions[sessionCookie] = clientContext = new NTAuthentication(false,"WDigest",credential,null, ContextFlags.Connection); } string resp = (challenge != null ? clientContext.GetOutgoingBlob(challenge) : clientContext.GetOutgoingBlob(null)); if (!clientContext.IsCompleted) { return new Authorization(resp, false); } else { this.sessions.Remove(sessionCookie); return new Authorization(resp, true); } } } public string AuthenticationType { get { return "WDigest"; } } public void CloseContext(object sessionCookie) { // This is a no-op since the context is not // kept open by this module beyond auth completion. } #endregion } } // 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
- XmlTextReaderImplHelpers.cs
- MarkupCompilePass1.cs
- UiaCoreProviderApi.cs
- GradientStop.cs
- ConversionContext.cs
- ExtractedStateEntry.cs
- SafeProcessHandle.cs
- LocalFileSettingsProvider.cs
- ExeContext.cs
- basevalidator.cs
- DataGridViewIntLinkedList.cs
- XsdDuration.cs
- ServerTooBusyException.cs
- PointLightBase.cs
- sqlser.cs
- GroupItemAutomationPeer.cs
- AlternateViewCollection.cs
- ToolStripGripRenderEventArgs.cs
- DataComponentNameHandler.cs
- HotCommands.cs
- assertwrapper.cs
- XmlSubtreeReader.cs
- OptionUsage.cs
- DisplayMemberTemplateSelector.cs
- CodeGeneratorAttribute.cs
- ModifierKeysConverter.cs
- DBCSCodePageEncoding.cs
- WebPartDescriptionCollection.cs
- ContentElementAutomationPeer.cs
- D3DImage.cs
- CLSCompliantAttribute.cs
- MarshalByValueComponent.cs
- SinglePageViewer.cs
- PerformanceCountersElement.cs
- messageonlyhwndwrapper.cs
- MsmqSecureHashAlgorithm.cs
- ContentOperations.cs
- RenderData.cs
- NamespaceEmitter.cs
- DurationConverter.cs
- BinaryObjectReader.cs
- BackgroundWorker.cs
- isolationinterop.cs
- ScopedKnownTypes.cs
- TableLayoutColumnStyleCollection.cs
- ParserStreamGeometryContext.cs
- SafeTimerHandle.cs
- Rule.cs
- BindingCollection.cs
- ObjectToIdCache.cs
- Unit.cs
- XPathMessageFilterTable.cs
- CqlGenerator.cs
- MessageSecurityProtocolFactory.cs
- PathStreamGeometryContext.cs
- MenuAdapter.cs
- VideoDrawing.cs
- CodeTypeParameter.cs
- MonthCalendar.cs
- WpfKnownType.cs
- DecoderReplacementFallback.cs
- UInt64Converter.cs
- PublishLicense.cs
- StatusBarPanelClickEvent.cs
- AnnotationService.cs
- StandardBindingCollectionElement.cs
- TypeDelegator.cs
- EnumBuilder.cs
- EdgeModeValidation.cs
- AccessViolationException.cs
- PeerTransportSecurityElement.cs
- CodeMethodReturnStatement.cs
- recordstate.cs
- SymmetricKeyWrap.cs
- WebPartConnectionsConnectVerb.cs
- BindableTemplateBuilder.cs
- StickyNote.cs
- EmbeddedMailObjectsCollection.cs
- HttpListenerTimeoutManager.cs
- URLIdentityPermission.cs
- FilteredXmlReader.cs
- SafeBuffer.cs
- HtmlTableRowCollection.cs
- ChooseAction.cs
- TemplatePropertyEntry.cs
- LinearGradientBrush.cs
- GatewayDefinition.cs
- CallbackHandler.cs
- ProtocolsConfigurationHandler.cs
- ProjectionCamera.cs
- PasswordTextContainer.cs
- GPPOINT.cs
- SQLInt32.cs
- DataGridViewDataErrorEventArgs.cs
- GeneratedCodeAttribute.cs
- ErrorsHelper.cs
- XmlSchemaExporter.cs
- CodeAttributeArgumentCollection.cs
- Shape.cs
- BaseDataListActionList.cs