本文整理汇总了C#中System.Security.Cryptography.HMACSHA1.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# HMACSHA1.ToString方法的具体用法?C# HMACSHA1.ToString怎么用?C# HMACSHA1.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Security.Cryptography.HMACSHA1
的用法示例。
在下文中一共展示了HMACSHA1.ToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Invariants
public void Invariants ()
{
algo = new HMACSHA1 ();
AssertEquals ("HMACSHA1.CanReuseTransform", true, algo.CanReuseTransform);
AssertEquals ("HMACSHA1.CanTransformMultipleBlocks", true, algo.CanTransformMultipleBlocks);
AssertEquals ("HMACSHA1.HashName", "SHA1", algo.HashName);
AssertEquals ("HMACSHA1.HashSize", 160, algo.HashSize);
AssertEquals ("HMACSHA1.InputBlockSize", 1, algo.InputBlockSize);
AssertEquals ("HMACSHA1.OutputBlockSize", 1, algo.OutputBlockSize);
AssertEquals ("HMACSHA1.ToString()", "System.Security.Cryptography.HMACSHA1", algo.ToString ());
}
示例2: Invariants
public void Invariants ()
{
algo = new HMACSHA1 ();
Assert.IsTrue (algo.CanReuseTransform, "HMACSHA1.CanReuseTransform");
Assert.IsTrue (algo.CanTransformMultipleBlocks, "HMACSHA1.CanTransformMultipleBlocks");
Assert.AreEqual ("SHA1", algo.HashName, "HMACSHA1.HashName");
Assert.AreEqual (160, algo.HashSize, "HMACSHA1.HashSize");
Assert.AreEqual (1, algo.InputBlockSize, "HMACSHA1.InputBlockSize");
Assert.AreEqual (1, algo.OutputBlockSize, "HMACSHA1.OutputBlockSize");
Assert.AreEqual (64, algo.Key.Length, "HMACSHA1.Key.Length");
Assert.AreEqual ("System.Security.Cryptography.HMACSHA1", algo.ToString (), "HMACSHA1.ToString()");
}