c#

位置:IT落伍者 >> c# >> 浏览文章

C#中的HMACSHA1类


发布日期:2018年11月04日
 
C#中的HMACSHA1类

//C#中使用HMACSHA

using System;

using SystemSecurityCryptography;

using SystemText;

namespace ExamplesSystemNet

{

public class HMACSHADemo

{

public static void Main(string[] args)

{

string password = Pa$$wrd;

HMACSHA provider = new HMACSHA();

byte[] hashedPassword = providerComputeHash(EncodingDefaultGetBytes(password));

StringBuilder displayString = new StringBuilder();

for (int counter = ; counter < hashedPasswordLength; counter++)

{

displayStringAppend(hashedPassword[counter]ToString(x));

}

ConsoleWriteLine(displayString);

byte[] key = providerKey;

displayString = new StringBuilder();

for (int counter = ; counter < keyLength; counter++)

{

displayStringAppend(key[counter]ToString(x));

}

ConsoleWriteLine(displayString);

ConsoleReadLine();

}

}

}

               

上一篇:设计模式与VB .net代码 外观模式,合成模式

下一篇:ADO.NET:通向未来之桥