| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // SHA512CngTest.cs - NUnit Test Cases for SHA512Cng
- //
- // Author:
- // Sebastien Pouliot <[email protected]>
- //
- // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
- // Copyright (C) 2004, 2007-2008 Novell, Inc (http://www.novell.com)
- //
- #if !MOBILE
- using NUnit.Framework;
- using System;
- using System.Security.Cryptography;
- using System.Text;
- namespace MonoTests.System.Security.Cryptography {
- // References:
- // a. FIPS PUB 180-2: Secure Hash Standard
- // http://csrc.nist.gov/publications/fips/fips180-2/fips180-2.pdf
- // we inherit from SHA512Test because all SHA512 implementation must return the
- // same results (hence should run a common set of unit tests).
- [TestFixture]
- public class SHA512CngTest : SHA512Test {
- [SetUp]
- public override void SetUp ()
- {
- hash = new SHA512Cng ();
- }
- [Test]
- public override void Create ()
- {
- // no need to repeat this test
- }
- // none of those values changes for a particuliar implementation of SHA512
- [Test]
- public override void StaticInfo ()
- {
- // test all values static for SHA512
- base.StaticInfo ();
- string className = hash.ToString ();
- Assert.IsTrue (hash.CanReuseTransform, className + ".CanReuseTransform");
- Assert.IsTrue (hash.CanTransformMultipleBlocks, className + ".CanTransformMultipleBlocks");
- Assert.AreEqual ("System.Security.Cryptography.SHA512Cng", className, className + ".ToString()");
- }
- [Test]
- public void FIPSCompliance_Test1 ()
- {
- SHA512 sha = (SHA512) hash;
- // First test, we hash the string "abc"
- FIPS186_Test1 (sha);
- }
- [Test]
- public void FIPSCompliance_Test2 ()
- {
- SHA512 sha = (SHA512) hash;
- // Second test, we hash the string "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu"
- FIPS186_Test2 (sha);
- }
- [Test]
- public void FIPSCompliance_Test3 ()
- {
- SHA512 sha = (SHA512) hash;
- // Third test, we hash 1,000,000 times the character "a"
- FIPS186_Test3 (sha);
- }
- }
- }
- #endif
|