为了账号安全,请及时绑定邮箱和手机立即绑定

How to write the follow simple sha1Hex() in C#(.net) ?

How to write the follow simple sha1Hex() in C#(.net) ?

天涯尽头无女友 2019-04-14 10:42:14
Howtowritethefollowsimplesha1Hex(sbyte[]data,stringkey)inC#(.net)?下面是Java的代码,c#要怎么写这个简单的算法,要带key的。publicstaticstringsha1Hex(sbyte[]data,stringkey){sbyte[]keyBytes=key.GetBytes();SecretKeySpecsigningKey=newSecretKeySpec(keyBytes,"HmacSHA1");Macmac;StringBuildersb=newStringBuilder();try{mac=Mac.getInstance("HmacSHA1");mac.init(signingKey);sbyte[]rawHmac=mac.doFinal(data);foreach(sbytebinrawHmac){sb.Append(byteToHexString(b));}}catch(Exception){}returnsb.ToString();}
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 312 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信