onvif中的ws

您所在的位置:网站首页 token算法加密 onvif中的ws

onvif中的ws

2024-07-10 11:39:28| 来源: 网络整理| 查看: 265

https://stackoverflow.com/questions/25262909/c-sharp-encoding-wsse-security-password-digest-with-sha-1-and-base64-not-matchin

onvif中的ws-username token 加密算法

Password_Digest = Base64 ( SHA-1 ( nonce + created + password ) )

编码为utf-8

注意这里的加密不是使用字符串进行加密,而是字节数组;

    public class WsseHelper     {         ///         /// 获取加密的字节数组         ///         ///         ///         ///         ///         private static byte[] buildBytes(string nonce, string createdString, string basedPassword)         {             byte[] nonceBytes = System.Convert.FromBase64String(nonce);             byte[] time = Encoding.UTF8.GetBytes(createdString);             byte[] pwd = Encoding.UTF8.GetBytes(basedPassword);             byte[] operand = new byte[nonceBytes.Length + time.Length + pwd.Length];             Array.Copy(nonceBytes, operand, nonceBytes.Length);             Array.Copy(time, 0, operand, nonceBytes.Length, time.Length);             Array.Copy(pwd, 0, operand, nonceBytes.Length + time.Length, pwd.Length);             return operand;         }         ///         /// 计算指定字节数组的哈希值。         ///         ///         ///         public static byte[] SHAOneHash(byte[] data)         {             using (SHA1Managed sha1 = new SHA1Managed())             {                 var hash = sha1.ComputeHash(data);                 return hash;             }         }         ///         /// 获取加密后的字符串         ///         ///         ///         ///         ///         public static string GetPasswordDigest(string nonce, string createdString, string password)         {             byte[] combined = buildBytes(nonce, createdString, password);             string output = System.Convert.ToBase64String(SHAOneHash(combined));             return output;         }         ///         /// 加密的时间戳         ///         ///         public static string GetCreated()         {             return DateTime.Now.ToString("yyyy-MM-ddThh:mm:ssZ");         }         ///         /// 将随机的16位字节数据加密成nonce         ///         ///         ///         public static string GetNonce()         {             byte[] nonce = new byte[16];             new Random().NextBytes(nonce);             return System.Convert.ToBase64String(nonce);         }         ///         /// 获取加密后的头部         ///         ///         ///         ///         public static string GetHead(string username, string password)         {             string res = string.Empty;             string format = @"                     {0}         {1}         {2}         {3}             ";             string nonce = GetNonce();             string created = GetCreated();             string pas = GetPasswordDigest(nonce, created, password);             res = string.Format(format, username, pas, nonce, created);             return res;         }     }



【本文地址】

公司简介

联系我们

今日新闻


点击排行

实验室常用的仪器、试剂和
说到实验室常用到的东西,主要就分为仪器、试剂和耗
不用再找了,全球10大实验
01、赛默飞世尔科技(热电)Thermo Fisher Scientif
三代水柜的量产巅峰T-72坦
作者:寞寒最近,西边闹腾挺大,本来小寞以为忙完这
通风柜跟实验室通风系统有
说到通风柜跟实验室通风,不少人都纠结二者到底是不
集消毒杀菌、烘干收纳为一
厨房是家里细菌较多的地方,潮湿的环境、没有完全密
实验室设备之全钢实验台如
全钢实验台是实验室家具中较为重要的家具之一,很多

推荐新闻


图片新闻

实验室药品柜的特性有哪些
实验室药品柜是实验室家具的重要组成部分之一,主要
小学科学实验中有哪些教学
计算机 计算器 一般 打孔器 打气筒 仪器车 显微镜
实验室各种仪器原理动图讲
1.紫外分光光谱UV分析原理:吸收紫外光能量,引起分
高中化学常见仪器及实验装
1、可加热仪器:2、计量仪器:(1)仪器A的名称:量
微生物操作主要设备和器具
今天盘点一下微生物操作主要设备和器具,别嫌我啰嗦
浅谈通风柜使用基本常识
 众所周知,通风柜功能中最主要的就是排气功能。在

专题文章

    CopyRight 2018-2019 实验室设备网 版权所有 win10的实时保护怎么永久关闭