summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2015-11-09 12:14:47 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2015-11-09 12:14:47 +0700
commite0eb5dab1b6914f41793e0b42b07d9e47682a5e5 (patch)
treecf2569f3bc5d59e9a5121e9b1c03556414dbe7fb
parentA few changes in the use of LIB preprocessor flag (diff)
parentAdd DOTNET and LIB preprocessor flags as per BouncyCastle-PCL (diff)
downloadBouncyCastle.NET-ed25519-e0eb5dab1b6914f41793e0b42b07d9e47682a5e5.tar.xz
Merge branch 'master' of git.bouncycastle.org:bc-csharp into pcl
-rw-r--r--crypto/src/openpgp/PgpLiteralDataGenerator.cs2
-rw-r--r--crypto/test/src/crypto/test/AllTests.cs22
2 files changed, 12 insertions, 12 deletions
diff --git a/crypto/src/openpgp/PgpLiteralDataGenerator.cs b/crypto/src/openpgp/PgpLiteralDataGenerator.cs
index 96078bf3e..7672659ca 100644
--- a/crypto/src/openpgp/PgpLiteralDataGenerator.cs
+++ b/crypto/src/openpgp/PgpLiteralDataGenerator.cs
@@ -142,7 +142,7 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp
 		}
 
 #if !PORTABLE || DOTNET
-		/// <summary>
+        /// <summary>
 		/// <p>
 		/// Open a literal data packet for the passed in <c>FileInfo</c> object, returning
 		/// an output stream for saving the file contents.
diff --git a/crypto/test/src/crypto/test/AllTests.cs b/crypto/test/src/crypto/test/AllTests.cs
index d5feec500..2b690930d 100644
--- a/crypto/test/src/crypto/test/AllTests.cs
+++ b/crypto/test/src/crypto/test/AllTests.cs
@@ -18,17 +18,17 @@ namespace Org.BouncyCastle.Crypto.Tests
             Suite.Run(new NullListener(), NUnit.Core.TestFilter.Empty);
         }
 
-		[Suite]
-		public static TestSuite Suite
-		{
-			get
-			{
-				TestSuite suite = new TestSuite("Lightweight Crypto Tests");
-				suite.Add(new AllTests());
-		        suite.Add(new GcmReorderTest());
-				return suite;
-			}
-		}
+        [Suite]
+        public static TestSuite Suite
+        {
+            get
+            {
+                TestSuite suite = new TestSuite("Lightweight Crypto Tests");
+                suite.Add(new AllTests());
+                suite.Add(new GcmReorderTest());
+                return suite;
+            }
+        }
 #endif
 
 		[Test]