System.Net网络编程--AuthenticationManager和IAuthenticationModule

AuthenticationManager——管理客户端身份验证过程中调用的身份验证模块。

public class Demo1
    {
        private static string username, password, domain, uri;

        // This method invoked when the user does not enter the required input parameters.
        private static void showusage()
        {
            Console.WriteLine("Attempts to authenticate to a URL");
            Console.WriteLine("\r\nUse one of the following:");
            Console.WriteLine("\tcustomBasicAuthentication URL username password domain");
            Console.WriteLine("\tcustomBasicAuthentication URL username password");
        }

        // Display registered authentication modules.
        private static void displayRegisteredModules()
        {
            // The AuthenticationManager calls all authentication modules sequentially 
            // until one of them responds with an authorization instance.  Show
            // the current registered modules.
            IEnumerator registeredModules = AuthenticationManager.RegisteredModules;
            Console.WriteLine("\r\nThe following authentication modules are now registered with the system:");
            while (registeredModules.MoveNext())
            {
                Console.WriteLine("\r \n Module : {0}", registeredModules.Current);
                IAuthenticationModule currentAuthenticationModule = (IAuthenticationModule)registeredModules.Current;
                Console.WriteLine("\t  CanPreAuthenticate : {0}", currentAuthenticationModule.CanPreAuthenticate);
            }
        }

        private static void getPage(String url)
        {
            try
            {
                // 创建对象
                HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
                req.Method = "GET";
                if (domain == String.Empty)
                {
                    req.Credentials = new NetworkCredential(username, password);
                }
                else
                {
                    req.Credentials = new NetworkCredential(username, password, domain);
                }
                HttpWebResponse result = (HttpWebResponse)req.GetResponse();
                Console.WriteLine("\nAuthentication Succeeded:");
                Stream sData = result.GetResponseStream();
                displayPageContent(sData);
            }
            catch (WebException e)
            {
                // Display any errors. In particular, display any protocol-related error. 
                if (e.Status == WebExceptionStatus.ProtocolError)
                {
                    HttpWebResponse hresp = (HttpWebResponse)e.Response;
                    Console.WriteLine("\nAuthentication Failed, " + hresp.StatusCode);
                    Console.WriteLine("Status Code: " + (int)hresp.StatusCode);
                    Console.WriteLine("Status Description: " + hresp.StatusDescription);
                    return;
                }
                Console.WriteLine("Caught Exception: " + e.Message);
                Console.WriteLine("Stack: " + e.StackTrace);
            }
        }
        private static void displayPageContent(Stream ReceiveStream)
        {
            // 设置编码
            Encoding ASCII = Encoding.ASCII;
            Byte[] read = new Byte[512];

            Console.WriteLine("\r\nPage Content...\r\n");
            //输出
            int bytes = ReceiveStream.Read(read, 0, 512);
            while (bytes > 0)
            {
                Console.Write(ASCII.GetString(read, 0, bytes));
                bytes = ReceiveStream.Read(read, 0, 512);
            }
            Console.WriteLine("");
        }
        public static void Main(string[] args)
        {

            if (args.Length < 3)
                showusage();
            else
            {

                // Read the user's credentials.
                uri = args[0];
                username = args[1];
                password = args[2];

                if (args.Length == 3)
                    domain = string.Empty;
                else
                    domain = args[3];


                // Instantiate the custom Basic authentication module.
                CustomBasic customBasicModule = new CustomBasic();

                // Unregister the standard Basic authentication module.
                AuthenticationManager.Unregister("Basic");

                // Register the custom Basic authentication module.
                AuthenticationManager.Register(customBasicModule);

                // Display registered authorization modules.
                displayRegisteredModules();

                // Read the specified page and display it on the console.
                getPage(uri);
            }
            return;
        }

        private void Test()
        {

            WindowsAuthenticationModule tt = new WindowsAuthenticationModule();
        }
    }

    // The CustomBasic class creates a custom Basic authentication by implementing the
    // IAuthenticationModule interface. It performs the following
    // tasks:
    // 1) Defines and initializes the required properties.
    // 2) Implements the Authenticate method.

    /// <summary>
    /// 认证模块
    /// </summary>
    public class CustomBasic : IAuthenticationModule
    {

        private string m_authenticationType;
        private bool m_canPreAuthenticate;

        // The CustomBasic constructor initializes the properties of the customized 
        // authentication.
        public CustomBasic()
        {
            m_authenticationType = "Basic";
            m_canPreAuthenticate = false;
        }

        // Define the authentication type. This type is then used to identify this
        // custom authentication module. The default is set to Basic.
        public string AuthenticationType
        {
            get
            {
                return m_authenticationType;
            }
        }

        // Define the pre-authentication capabilities for the module. The default is set
        // to false.
        public bool CanPreAuthenticate
        {
            get
            {
                return m_canPreAuthenticate;
            }
        }

        // The checkChallenge method checks whether the challenge sent by the HttpWebRequest 
        // contains the correct type (Basic) and the correct domain name. 
        // Note: The challenge is in the form BASIC REALM="DOMAINNAME"; 
        // the Internet Web site must reside on a server whose
        // domain name is equal to DOMAINNAME.
        //校验规则和域名
        public bool checkChallenge(string Challenge, string domain)
        {
            bool challengePasses = false;

            String tempChallenge = Challenge.ToUpper();

            // Verify that this is a Basic authorization request and that the requested domain
            // is correct.
            // Note: When the domain is an empty string, the following code only checks 
            // whether the authorization type is Basic.

            if (tempChallenge.IndexOf("BASIC") != -1)
                if (domain != String.Empty)
                    if (tempChallenge.IndexOf(domain.ToUpper()) != -1)
                        challengePasses = true;
                    else
                        // The domain is not allowed and the authorization type is Basic.
                        challengePasses = false;
                else
                    // The domain is a blank string and the authorization type is Basic.
                    challengePasses = true;

            return challengePasses;
        }

        // The PreAuthenticate method specifies whether the authentication implemented 
        // by this class allows pre-authentication. 
        // Even if you do not use it, this method must be implemented to obey to the rules 
        // of interface implementation.
        // In this case it always returns null. 
        public Authorization PreAuthenticate(WebRequest request, ICredentials credentials)
        {
            return null;
        }

        // Authenticate is the core method for this custom authentication.
        // When an Internet resource requests authentication, the WebRequest.GetResponse 
        // method calls the AuthenticationManager.Authenticate method. This method, in 
        // turn, calls the Authenticate method on each of the registered authentication
        // modules, in the order in which they were registered. When the authentication is 
        // complete an Authorization object is returned to the WebRequest.
        public Authorization Authenticate(String challenge, WebRequest request, ICredentials credentials)
        {
            Encoding ASCII = Encoding.ASCII;

            // Get the username and password from the credentials
            NetworkCredential MyCreds = credentials.GetCredential(request.RequestUri, "Basic");

            if (PreAuthenticate(request, credentials) == null)
                Console.WriteLine("\n Pre-authentication is not allowed.");
            else
                Console.WriteLine("\n Pre-authentication is allowed.");

            // Verify that the challenge satisfies the authorization requirements.
            bool challengeOk = checkChallenge(challenge, MyCreds.Domain);

            if (!challengeOk)
                return null;

            // Create the encrypted string according to the Basic authentication format as
            // follows:
            // a)Concatenate the username and password separated by colon;
            // b)Apply ASCII encoding to obtain a stream of bytes;
            // c)Apply Base64 encoding to this array of bytes to obtain the encoded 
            // authorization.
            string BasicEncrypt = MyCreds.UserName + ":" + MyCreds.Password;

            string BasicToken = "Basic " + Convert.ToBase64String(ASCII.GetBytes(BasicEncrypt));
            //Basic 认证
            Authorization resourceAuthorization = new Authorization(BasicToken);

            // Get the Message property, which contains the authorization string that the 
            // client returns to the server when accessing protected resources.
            Console.WriteLine("\n Authorization Message:{0}", resourceAuthorization.Message);

            // Get the Complete property, which is set to true when the authentication process 
            // between the client and the server is finished.
            Console.WriteLine("\n Authorization Complete:{0}", resourceAuthorization.Complete);
            Console.WriteLine("\n Authorization ConnectionGroupId:{0}", resourceAuthorization.ConnectionGroupId);
            return resourceAuthorization;
        }
    }

上面的代码摘抄自:https://msdn.microsoft.com/zh-cn/library/system.net.authenticationmanager%28v=vs.100%29.aspx?f=255&MSPPError=-2147217396

 

IAuthenticationModule:为 Web 客户端身份验证模块提供基身份验证接口。

在web.config 中的设置,当使用window验证时,可以设置自己的验证方式。当IIS不选择匿名验证时,使用的也是window集成验证。

  <system.web>
    <compilation debug="true">

    </compilation>
    <!--
            通过 <authentication> 节,可配置 
      ASP.NET 用于识别进入用户的 
      安全身份验证模式。
    -->
    <authentication mode="Windows" />
    <!--
            通过 <customErrors> 节,可以配置
       在执行请求的过程中出现未处理的错误时要执行 
       的操作。具体而言,
       开发人员通过该节可配置要显示的 html 错误页,
       以代替错误堆栈跟踪。

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->

  </system.web>
  <system.net>
    <authenticationModules>
      <add type="xxx"/>
    </authenticationModules>
  </system.net>

 

 

  

认证类:

BasicClientBasic 认证
DigestClient:摘要认证
KerberosClient:Kerberos 认证
NegotiateClient:Negotiate 认证
 NtlmClient:Ntlm 认证


认证的几种方式参考:http://blog.csdn.net/leafqing04/article/details/6434418
 
有什么不对的地方,麻烦指点一下,谢谢!

 

转载于:https://www.cnblogs.com/wucaifang/p/4754236.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
提供的源码资源涵盖了安卓应用、小程序、Python应用和Java应用等多个领域,每个领域都包含了丰富的实例和项目。这些源码都是基于各自平台的最新技术和标准编写,确保了在对应环境下能够无缝运行。同时,源码中配备了详细的注释和文档,帮助用户快速理解代码结构和实现逻辑。 适用人群: 这些源码资源特别适合大学生群体。无论你是计算机相关专业的学生,还是对其他领域编程感兴趣的学生,这些资源都能为你提供宝贵的学习和实践机会。通过学习和运行这些源码,你可以掌握各平台开发的基础知识,提升编程能力和项目实战经验。 使用场景及目标: 在学习阶段,你可以利用这些源码资源进行课程实践、课外项目或毕业设计。通过分析和运行源码,你将深入了解各平台开发的技术细节和最佳实践,逐步培养起自己的项目开发和问题解决能力。此外,在求职或创业过程中,具备跨平台开发能力的大学生将更具竞争力。 其他说明: 为了确保源码资源的可运行性和易用性,特别注意了以下几点:首先,每份源码都提供了详细的运行环境和依赖说明,确保用户能够轻松搭建起开发环境;其次,源码中的注释和文档都非常完善,方便用户快速上手和理解代码;最后,我会定期更新这些源码资源,以适应各平台技术的最新发展和市场需求。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值