Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Mail / SmtpDigestAuthenticationModule.cs / 1 / 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
- ComplusEndpointConfigContainer.cs
- TypeLoadException.cs
- ControlBindingsCollection.cs
- COSERVERINFO.cs
- XMLSyntaxException.cs
- documentation.cs
- FormViewInsertedEventArgs.cs
- MimeBasePart.cs
- Compiler.cs
- Activity.cs
- FastEncoder.cs
- SmiRecordBuffer.cs
- SecurityTokenSerializer.cs
- SqlTransaction.cs
- ItemMap.cs
- ColorTranslator.cs
- CacheMemory.cs
- SessionStateContainer.cs
- UserControl.cs
- DBCommand.cs
- NativeRightsManagementAPIsStructures.cs
- XmlSignificantWhitespace.cs
- SqlConnectionPoolProviderInfo.cs
- NameValuePair.cs
- MissingMemberException.cs
- ObjectQueryProvider.cs
- SharedStatics.cs
- LockCookie.cs
- XmlArrayItemAttributes.cs
- TraceSource.cs
- ExpressionDumper.cs
- X509CertificateStore.cs
- NameValuePair.cs
- TileBrush.cs
- ZipIOLocalFileHeader.cs
- DescendantOverDescendantQuery.cs
- FormsAuthenticationEventArgs.cs
- Int32AnimationBase.cs
- WindowsComboBox.cs
- TransformerInfo.cs
- ContractTypeNameCollection.cs
- BindingManagerDataErrorEventArgs.cs
- FlowDecisionLabelFeature.cs
- HwndKeyboardInputProvider.cs
- SafeArrayTypeMismatchException.cs
- PageSetupDialog.cs
- ImmComposition.cs
- MediaScriptCommandRoutedEventArgs.cs
- AlternateView.cs
- OdbcStatementHandle.cs
- OutputCacheProfileCollection.cs
- WebRequestModuleElementCollection.cs
- ActivityStatusChangeEventArgs.cs
- BitArray.cs
- Hash.cs
- PageTrueTypeFont.cs
- WmlSelectionListAdapter.cs
- SqlNodeAnnotation.cs
- CodeCommentStatementCollection.cs
- MetadataItemSerializer.cs
- ErrorEventArgs.cs
- SqlFacetAttribute.cs
- WebPartDisplayModeCancelEventArgs.cs
- TableTextElementCollectionInternal.cs
- PopupRootAutomationPeer.cs
- _AutoWebProxyScriptHelper.cs
- WebPartZoneBase.cs
- XmlAtomicValue.cs
- ComponentResourceKey.cs
- URI.cs
- RuleInfoComparer.cs
- DebugManager.cs
- IisTraceWebEventProvider.cs
- PageOutputColor.cs
- DbResourceAllocator.cs
- PropertyDescriptorCollection.cs
- EntityDataSourceColumn.cs
- ComponentManagerBroker.cs
- MonikerUtility.cs
- Util.cs
- Opcode.cs
- XmlSchemaResource.cs
- ProtocolsSection.cs
- SystemTcpStatistics.cs
- TextViewElement.cs
- MaskPropertyEditor.cs
- DBDataPermissionAttribute.cs
- GZipDecoder.cs
- IsolatedStorageException.cs
- SignatureToken.cs
- RuntimeHelpers.cs
- ConfigUtil.cs
- OleDbCommand.cs
- XmlQueryOutput.cs
- InvalidPrinterException.cs
- PromptBuilder.cs
- MimeWriter.cs
- SafeCertificateStore.cs
- SettingsSection.cs
- TabControlEvent.cs