public string rspauth(string Username, string Realm, string Password, string Nonce, string Cnonce,
  string m_Authzid, string m_DigestUri, string Qop, string m_Nc)
   {
       //          HEX( KD ( HEX(H(A1)),
       //              { nonce-value, ":" nc-value, ":",
       //                cnonce-value, ":", qop-value, ":", HEX(H(A2)) }))

       //If authzid is specified, then A1 is

       //   A1 = { H( { username-value, ":", realm-value, ":", passwd } ),
       //        ":", nonce-value, ":", cnonce-value, ":", authzid-value }

       //If authzid is not specified, then A1 is

       //   A1 = { H( { username-value, ":", realm-value, ":", passwd } ),
       //        ":", nonce-value, ":", cnonce-value }

       //         The server receives and validates the "digest-response". The server
       //checks that the nonce-count is "00000001". If it supports subsequent
       //authentication (see section 2.2), it saves the value of the nonce and
       //the nonce-count. It sends a message formatted as follows:

       // response-auth = "rspauth" "=" response-value

       //where response-value is calculated as above, using the values sent in
       //step two, except that if qop is "auth", then A2 is

       //    A2 = { ":", digest-uri-value }

       //And if qop is "auth-int" or "auth-conf" then A2 is

       //    A2 = { ":", digest-uri-value, ":00000000000000000000000000000000" }

       byte[] H1;
       byte[] H2;
       byte[] H3;

       // byte[] temp;
       string A1;
       string A2;
       string A3;
       string p1;
       string p2;

       var sb = new StringBuilder();
       sb.Append(Username);
       sb.Append(":");
       sb.Append(Realm);
       sb.Append(":");
       sb.Append(Password);

       H1 = new MD5CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(sb.ToString()));

       sb.Remove(0, sb.Length);
       sb.Append(":");
       sb.Append(Nonce);
       sb.Append(":");
       sb.Append(Cnonce);

       if (m_Authzid != null)
       {
           sb.Append(":");
           sb.Append(m_Authzid);
       }

       A1 = sb.ToString();

       byte[] bA1 = Encoding.ASCII.GetBytes(A1);
       var bH1A1 = new byte[H1.Length + bA1.Length];

       // Array.Copy(H1, bH1A1, H1.Length);
       Array.Copy(H1, 0, bH1A1, 0, H1.Length);
       Array.Copy(bA1, 0, bH1A1, H1.Length, bA1.Length);

       H1 = new MD5CryptoServiceProvider().ComputeHash(bH1A1);

       // Console.WriteLine(util.Hash.HexToString(H1));

       sb.Remove(0, sb.Length);
       sb.Append(":");
       sb.Append(m_DigestUri);
       //if (Qop.CompareTo("auth") != 0)
       //{
       //    sb.Append(":00000000000000000000000000000000");
       //}

       A2 = sb.ToString();
       //H2 = Encoding.ASCII.GetBytes(A2);
       H2 = Encoding.UTF8.GetBytes(A2);

       H2 = new MD5CryptoServiceProvider().ComputeHash(H2);

       // create p1 and p2 as the hex representation of H1 and H2
       p1 = Hash.HexToString(H1).ToLower();
       p2 = Hash.HexToString(H2).ToLower();

       sb.Remove(0, sb.Length);
       sb.Append(p1);
       sb.Append(":");
       sb.Append(Nonce);
       sb.Append(":");
       sb.Append(m_Nc);
       sb.Append(":");
       sb.Append(Cnonce);
       sb.Append(":");
       sb.Append(Qop);
       sb.Append(":");
       sb.Append(p2);

       A3 = sb.ToString();

       H3 = new MD5CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(A3));

       var m_Response = Hash.HexToString(H3).ToLower();
       return m_Response;
   }

string.Format("rspauth={0}",的更多相关文章

  1. C#:String.Format数字格式化输出 {0:N2} {0:D2} {0:C2}等等

    int a = 12345678; //格式为sring输出//   Label1.Text = string.Format("asdfadsf{0}adsfasdf",a); / ...

  2. String.Format数字格式化输出 {0:N2} {0:D2} {0:C2

    //格式为sring输出 //   Label1.Text = string.Format("asdfadsf{0}adsfasdf",a); //   Label2.Text = ...

  3. 【转】C# String.Format数字格式化输出各种转换{0:N2} {0:D2} {0:C2}...

    ; //格式为sring输出 // Label1.Text = string.Format("asdfadsf{0}adsfasdf",a); // Label2.Text = & ...

  4. C#:String.Format数字格式化输出 {0:N2} {0:D2} {0:C2}...

    int a = 12345678; //格式为sring输出//   Label1.Text = string.Format("asdfadsf{0}adsfasdf",a);// ...

  5. String.Format数字格式化输出 {0:N2} {0:D2} {0:C2} (转)

    String.Format数字格式化输出 {:N2} {:D2} {:C2} (转) //格式为sring输出 // Label1.Text = string.Format("asdfads ...

  6. c#字符显示转换{0:d} string.Format()

    这一篇实际和前几个月写的没什么本质上的区别.但是这篇更明确一点,学起来easy c#字符显示转换{0:d} C#:String.Format数字格式化输出 : int a = 12345678; // ...

  7. C# String.Format格式化json字符串中包含"{" "}"报错问题

    json.Append(String.Format("{\"total\":{0},\"row\":{1}}", lineCount, st ...

  8. $是对string.Format的简化

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  9. 如何在string.Format()方法中输出大括号

    在string.Format参数中,大括号{}是有特殊意义的符号,但是如果我们希望最终的结果中包含大括号({}),那么我们需要怎么做呢?是”\{”吗?很遗憾,运行时,会给你一个Exception的!正 ...

随机推荐

  1. Bash CookBook(一)--基础

    Bash 是brian Fox在1988年1月10号出于Richard Stallman的建议而写的.   一. 运行模板: 交互登陆的shell,登陆后bash会读取和执行/etc/profile. ...

  2. SQL 中怎么查询数据库中具有的表、存储过程、试图数目、总触发器数、作业数

    用户表:select count(*) 总表数 from sysobjects where xtype='u' 刚才那个是用户表,下面这个是系统表加用户表: select count(*) 总表数 f ...

  3. transform详解

    1.简介 该算法用于实行容器元素的变换操作.有如下两个使用原型,一个将迭代器区间[first,last)中元素,执行一元函数对象op操作,交换后的结果放在[result,result+(last-fi ...

  4. Python爬虫实战六之抓取爱问知识人问题并保存至数据库

    大家好,本次为大家带来的是抓取爱问知识人的问题并将问题和答案保存到数据库的方法,涉及的内容包括: Urllib的用法及异常处理 Beautiful Soup的简单应用 MySQLdb的基础用法 正则表 ...

  5. [JAVA] 冻结Excel的第一行或第一列

    可以按照如下设置创建冻结窗口. sheet.createFreezePane( 3, 2, 3, 2 ); 前两个参数是你要用来拆分的列数和行数.后两个参数是下面窗口的可见象限,其中第三个参数是右边区 ...

  6. SpringMVC 细节学习

    使用Spring MVC,配置DispatcherServlet是第一步  DispatcherServlet是前置控制器,配置在web.xml文件中的 .拦截匹配的请求,Servlet拦截匹配规则要 ...

  7. 路飞项目背景,contentType以及django缓存

    昨日回顾: 分页器: 普通分页 # 普通分页 from rest_framework.pagination import PageNumberPagination -每页的大小(默认) -查询的时候, ...

  8. windows 安装 mysql5.7.17

    下载mysql 进入官网:https://www.mysql.com/ 单击[Downloads]选项卡 最下面有个[  MySQL Community Edition (GPL)],单击[Commu ...

  9. 创建EDM

    在学习linq过程中,我们难免会要创建EDM,这里简单的介绍一下EDM的创建过程 图示如下: 1.右击→添加→新建项→数据→Ado.net实体数据模型 选择适当的数据库,表后点击完成,vs中会自动生成 ...

  10. Eclipse快捷键和练习题(倒叙,排序)

    1    快捷键 内容辅助键  Alt+/ 自动补齐main方法  main 然后 Alt+/ 自动补齐输出语句  syso 然后 Alt+/ 格式化Ctrl+Shift+f 代码区域右键 -- So ...