Home > php教程 > php手册 > body text

会PHP的大婶帮忙把这个函数翻译成C#的~~

WBOY
Release: 2016-06-06 19:40:49
Original
1205 people have browsed it

using System; using System.Text; using System.Security.Cryptography; public class Program { private const string key = " key " ; private const string message = " message " ; private static readonly Encoding encoding = Encoding.UTF8; static

using System;

using System.Text;

using System.Security.Cryptography;

public class Program {

private const string key = "key";

private const string message = "message";

private static readonly Encoding encoding = Encoding.UTF8;

static void Main(string[] args) {

var keyByte = encoding.GetBytes(key);

using (var hmacsha256 = new HMACSHA256(keyByte)) { hmacsha256.ComputeHash(encoding.GetBytes(message));

Console.WriteLine("Result: {0}", ByteToString(hmacsha256.Hash));

}

}

static string ByteToString(byte[] buff) {

string sbinary = "";

for (int i = 0; i )

sbinary += buff[i].ToString("X2");

/* hex format */ return sbinary; }

}

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!