diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-01 23:48:47 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-01 23:48:47 -0800 |
commit | c3fa77496617b84a6eb751fc80d556b4b898bd50 (patch) | |
tree | 2273b2099cc87f3149b2145b59eea6a6baa3e18c /src | |
parent | bc6714786258281d9f144f96e795d06c31a16846 (diff) | |
parent | 7c1d657f7a81bf628298d37246dcb4165473738f (diff) | |
download | DotNetOpenAuth-c3fa77496617b84a6eb751fc80d556b4b898bd50.zip DotNetOpenAuth-c3fa77496617b84a6eb751fc80d556b4b898bd50.tar.gz DotNetOpenAuth-c3fa77496617b84a6eb751fc80d556b4b898bd50.tar.bz2 |
Merge branch 'v3.2' into v3.3
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/DiffieHellmanTests.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/DiffieHellmanTests.cs b/src/DotNetOpenAuth.Test/OpenId/DiffieHellmanTests.cs index fbbea71..426e19a 100644 --- a/src/DotNetOpenAuth.Test/OpenId/DiffieHellmanTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/DiffieHellmanTests.cs @@ -13,7 +13,7 @@ namespace DotNetOpenAuth.Test.OpenId { using Org.Mentalis.Security.Cryptography; [TestClass] - public class DiffieHellmanTests { + public class DiffieHellmanTests : OpenIdTestBase { [TestMethod] public void Test() { string s1 = Test1(); @@ -28,7 +28,9 @@ namespace DotNetOpenAuth.Test.OpenId { try { string line; + int lineNumber = 0; while ((line = reader.ReadLine()) != null) { + TestContext.WriteLine("\tLine {0}", ++lineNumber); string[] parts = line.Trim().Split(' '); byte[] x = Convert.FromBase64String(parts[0]); DiffieHellmanManaged dh = new DiffieHellmanManaged(AssociateDiffieHellmanRequest.DefaultMod, AssociateDiffieHellmanRequest.DefaultGen, x); |